fixed button spacing in dialogs

This commit is contained in:
Martin Wagner 2020-08-18 18:24:05 +02:00
parent d23eee9bc5
commit 8239751e6f

View File

@ -3070,7 +3070,7 @@ class SettingsDialog(Gtk.Dialog):
tabs.append_page(profiles, Gtk.Label(label=_("Profiles"))) tabs.append_page(profiles, Gtk.Label(label=_("Profiles")))
tabs.append_page(playlist, Gtk.Label(label=_("Playlist"))) tabs.append_page(playlist, Gtk.Label(label=_("Playlist")))
vbox=self.get_content_area() vbox=self.get_content_area()
vbox.set_spacing(3) vbox.set_spacing(6)
vbox.pack_start(tabs, True, True, 0) vbox.pack_start(tabs, True, True, 0)
self.show_all() self.show_all()
@ -3482,7 +3482,7 @@ class ServerStats(Gtk.Dialog):
frame=Gtk.Frame() frame=Gtk.Frame()
frame.add(self.treeview) frame.add(self.treeview)
self.vbox.pack_start(frame, True, True, 0) self.vbox.pack_start(frame, True, True, 0)
self.vbox.set_spacing(3) self.vbox.set_spacing(6)
self.show_all() self.show_all()
self.run() self.run()