You likely want to use gtk.label.Label instead as this widget is intended only
for a small subset of use cases. The main scenario envisaged is inside lists
such as gtk.column_view.ColumnView.
While a gtk.label.Label sizes itself depending on the text that is displayed,
gtk.inscription.Inscription is given a size and inscribes the given text into that
space as well as it can.
Users of this widget should take care to plan behaviour for the common case
where the text doesn't fit exactly in the allocated space.
gtk.inscription.Inscription is a widget to show text in a predefined area.
You likely want to use gtk.label.Label instead as this widget is intended only for a small subset of use cases. The main scenario envisaged is inside lists such as gtk.column_view.ColumnView.
While a gtk.label.Label sizes itself depending on the text that is displayed, gtk.inscription.Inscription is given a size and inscribes the given text into that space as well as it can.
Users of this widget should take care to plan behaviour for the common case where the text doesn't fit exactly in the allocated space.