Force GtkLabel to clip its center-aligned text
I`ve got a GtkLabel whose text is to remain centered regardless of whether it is shorter or longer than the label. For example, a Win32 static control that has the SS_CENTER style flag set behaves like that: ┌===========================┐ │ Lorem ipsum dolor │ └===========================┘ — when the text is shorter than the control; ┌===========================┐ Lorem ipsum│dolor sit amet, consectetur│adipiscing └===========================┘ — when the text is longer than the control. N.B.: The only part of the text seen by the user is inside the frame. I expected GtkLabel -s to do the same