Skip to content

Commit

Permalink
Merge pull request #349 from evandroforks/fix_choose_layout_size
Browse files Browse the repository at this point in the history
Fix #345 The Alt+L layout chooser is too small
  • Loading branch information
mattrose authored Dec 31, 2020
2 parents e40f9fe + 7e8af3f commit 5dc3653
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion terminatorlib/layoutlauncher.glade
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<property name="hscrollbar_policy">never</property>
<property name="vscrollbar_policy">automatic</property>
<property name="width_request">250</property>
<property name="height_request">250</property>
<property name="height_request">300</property>
<child>
<object class="GtkTreeView" id="layoutlist">
<property name="visible">True</property>
Expand Down
1 change: 1 addition & 0 deletions terminatorlib/layoutlauncher.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def __init__ (self):
icon = self.window.render_icon(Gtk.STOCK_DIALOG_INFO, Gtk.IconSize.BUTTON)
self.window.set_icon(icon)

self.window.set_size_request(250, 300)
self.builder.connect_signals(self)
self.window.connect('destroy', self.on_destroy_event)
self.window.show_all()
Expand Down

0 comments on commit 5dc3653

Please sign in to comment.