From a5eede9a2170cd12e992bad336f78f4cc12f2ffd Mon Sep 17 00:00:00 2001 From: jvoisin Date: Wed, 18 Jul 2018 22:38:42 +0200 Subject: [PATCH] Remove the disclaimer from the Nautilus extension --- nautilus/nautilus_mat2.py | 8 -------- 1 file changed, 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): self.main_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) self.window.add(self.main_box) - # Disclaimer - nitems = len(self.items) - if nitems > 1: - disclaimer = "Remove metadata from the %d following items:" % nitems - else: - disclaimer = "Remove metadata from the following item:" - self.main_box.pack_start(Gtk.Label(disclaimer, xalign=0), True, True, 0) - # List of files to clean listbox = Gtk.ListBox() self.main_box.pack_start(listbox, True, True, 0)