In gtk4 you use a transform clause in css to rotate text (in a label for example). Unfortunately the label no longer reports it’s correct natural size, so the label is laid out incorrectly. If I rotate a label with the text “rotated label” by 90deg. The label is allocated a space 1 character high by 13 characters wide, instead of 1 character wide by 13 high. What can I do to fix? Can this be done in css or do I need to create a “measure” callback. Can you provide a code example (preferably rust, but likely I can figure it out from python or c++). I’m fairly new to this platform so your patience is appreciated.