mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-05 07:58:38 +00:00
[Exceute] Fix GTK3 pack_start missing paramters
This commit is contained in:
parent
bb0c61bb3f
commit
ab1b2bcf14
1 changed files with 4 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue