removed extra frame in ServerStats

This commit is contained in:
Martin Wagner 2020-10-13 18:54:18 +02:00
parent 745f408059
commit d87c65c5cc

View File

@ -1256,10 +1256,8 @@ class ServerStats(Gtk.Dialog):
store.append([print_key, stats[key]])
# packing
frame=Gtk.Frame()
frame.add(treeview)
self.vbox.pack_start(frame, True, True, 0)
self.vbox.set_spacing(6)
self.vbox.pack_start(treeview, True, True, 0)
self.show_all()
self.run()