AgeOnDate: fix position ob input field and button

On small screen (as notebook) input field and button are placed on screen's
bottom. After this fix this control have top position.
This commit is contained in:
Stanislav Bolshakov 2020-07-03 18:32:22 +03:00 committed by prculley
parent 1d55d70914
commit 95776f8e84

View File

@ -68,11 +68,11 @@ class AgeOnDateGramplet(Gramplet):
button = Gtk.Button(label=_("Run"))
button.connect("clicked", self.run)
##self.filter =
vbox.pack_start(hbox, False, True, 0)
vbox.pack_start(button, False, True, 0)
hbox.pack_start(label, False, True, 0)
hbox.pack_start(self.entry, True, True, 0)
vbox.pack_start(description, True, True, 0)
vbox.pack_start(hbox, False, True, 0)
vbox.pack_start(button, False, True, 0)
self.gui.get_container_widget().remove(self.gui.textview)
self.gui.get_container_widget().add(vbox)
vbox.show_all()