summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-07-18 22:38:42 +0200
committerjvoisin2018-07-18 22:38:42 +0200
commita5eede9a2170cd12e992bad336f78f4cc12f2ffd (patch)
tree9a010c55119b5514f9b55d6b9a498cad02c76629
parent926e8dac5f4a695ebbef3bba82d252bd7aee66da (diff)
Remove the disclaimer from the Nautilus extension
-rw-r--r--nautilus/nautilus_mat2.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/nautilus/nautilus_mat2.py b/nautilus/nautilus_mat2.py
index 409df72..f29de64 100644
--- a/nautilus/nautilus_mat2.py
+++ b/nautilus/nautilus_mat2.py
@@ -40,14 +40,6 @@ class StatusWindow(Gtk.Window):
40 self.main_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) 40 self.main_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
41 self.window.add(self.main_box) 41 self.window.add(self.main_box)
42 42
43 # Disclaimer
44 nitems = len(self.items)
45 if nitems > 1:
46 disclaimer = "Remove metadata from the %d following items:" % nitems
47 else:
48 disclaimer = "Remove metadata from the following item:"
49 self.main_box.pack_start(Gtk.Label(disclaimer, xalign=0), True, True, 0)
50
51 # List of files to clean 43 # List of files to clean
52 listbox = Gtk.ListBox() 44 listbox = Gtk.ListBox()
53 self.main_box.pack_start(listbox, True, True, 0) 45 self.main_box.pack_start(listbox, True, True, 0)