summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-07-18 22:39:10 +0200
committerjvoisin2018-07-18 22:39:10 +0200
commitcf5f3b268d4a744c2d7fef27f4eedf771ca342b8 (patch)
treec61de6a664ce4746eb878d49e11c33c4007ef53c
parenta5eede9a2170cd12e992bad336f78f4cc12f2ffd (diff)
Add a separator for the Nautilus extension
-rw-r--r--nautilus/nautilus_mat2.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/nautilus/nautilus_mat2.py b/nautilus/nautilus_mat2.py
index f29de64..857953e 100644
--- a/nautilus/nautilus_mat2.py
+++ b/nautilus/nautilus_mat2.py
@@ -49,6 +49,9 @@ class StatusWindow(Gtk.Window):
49 listbox.show_all() 49 listbox.show_all()
50 50
51 # Options 51 # Options
52 separator = Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL)
53 self.main_box.pack_start(separator, True, True, 5)
54
52 hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=10) 55 hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=10)
53 self.main_box.pack_start(hbox, True, True, 0) 56 self.main_box.pack_start(hbox, True, True, 0)
54 label = Gtk.Label(xalign=0) 57 label = Gtk.Label(xalign=0)