Fix packing of filechooser widget in userscript plugin

This commit is contained in:
Patrick Ulbrich
2019-10-22 19:01:30 +02:00
parent 091939f492
commit 584c4d343f

View File

@@ -95,7 +95,7 @@ class UserscriptPlugin(Plugin):
box.pack_start(label, False, False, 0)
filechooser = Gtk.FileChooserButton()
box.pack_start(filechooser, True, True, 0)
box.pack_start(filechooser, False, False, 0)
return box