diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-05-10 22:18:14 +0200 |
---|---|---|
committer | Seth Hitefield <sdhitefield@gmail.com> | 2016-05-18 19:02:22 -0400 |
commit | 6353fdb06608edc23c837afaab93dd09dc583d2c (patch) | |
tree | 718ec5d88e6f2ebe384b0279c0ebb8eccd0f2e3e | |
parent | b9eaafa90f4e42f156bb5b9e87d21c16b1b4f4c7 (diff) |
grc: remove 'Showing: ...' messages
-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() ############################################################ |