[Exceute] Fix GTK3 pack_start missing paramters
This commit is contained in:
parent
bb0c61bb3f
commit
ab1b2bcf14
@ -96,11 +96,11 @@ class ExecutePreferences(object):
|
|||||||
img.set_from_stock(Gtk.STOCK_REMOVE, Gtk.IconSize.BUTTON)
|
img.set_from_stock(Gtk.STOCK_REMOVE, Gtk.IconSize.BUTTON)
|
||||||
button.set_image(img)
|
button.set_image(img)
|
||||||
|
|
||||||
hbox.pack_start(label, False, False)
|
hbox.pack_start(label, False, False, 0)
|
||||||
hbox.pack_start(entry)
|
hbox.pack_start(entry, False, False, 0)
|
||||||
hbox.pack_start(button, False, False)
|
hbox.pack_start(button, True, True, 0)
|
||||||
hbox.show_all()
|
hbox.show_all()
|
||||||
vbox.pack_start(hbox)
|
vbox.pack_start(hbox, True, True, 0)
|
||||||
|
|
||||||
def remove_command(self, command_id):
|
def remove_command(self, command_id):
|
||||||
vbox = self.builder.get_object('commands_vbox')
|
vbox = self.builder.get_object('commands_vbox')
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user