Skip to content

Commit

Permalink
Fix vertical toolbar expansion
Browse files Browse the repository at this point in the history
  • Loading branch information
JuiP committed May 10, 2020
1 parent a517b91 commit 6b8b47b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolbar_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def radio_factory(name, toolbar, callback, cb_arg=None, tooltip=None,
def label_factory(toolbar, label_text, width=None):
''' Factory for adding a label to a toolbar '''
label = Gtk.Label(label_text)
label.set_line_wrap(True)
label.set_line_wrap(False)
label.set_xalign(0)
if width is not None:
label.set_size_request(width, -1) # doesn't work on XOs
Expand Down

0 comments on commit 6b8b47b

Please sign in to comment.