diff options
-rw-r--r-- | grc/core/Messages.py | 4 | ||||
-rw-r--r-- | grc/gui/MainWindow.py | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/grc/core/Messages.py b/grc/core/Messages.py index da50487e5b..8daa12c33f 100644 --- a/grc/core/Messages.py +++ b/grc/core/Messages.py @@ -66,10 +66,6 @@ def send_init(platform): ) -def send_page_switch(file_path): - send('\nShowing: "%s"\n' % file_path) - - def send_xml_errors_if_any(xml_failures): if xml_failures: send('\nXML parser: Found {0} erroneous XML file{1} while loading the ' diff --git a/grc/gui/MainWindow.py b/grc/gui/MainWindow.py index 6da240d85b..ff7705837f 100644 --- a/grc/gui/MainWindow.py +++ b/grc/gui/MainWindow.py @@ -148,7 +148,6 @@ class MainWindow(gtk.Window): page_num: new page number """ self.current_page = self.notebook.get_nth_page(page_num) - Messages.send_page_switch(self.current_page.get_file_path()) Actions.PAGE_CHANGE() ############################################################ |