diff options
author | Seth Hitefield <sdhitefield@gmail.com> | 2014-06-11 11:27:55 -0400 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2014-06-13 11:04:26 +0200 |
commit | 9d6284c1e2317995c2ac959de0fa4f0668c0064d (patch) | |
tree | 9ffa264f8a910dd93f2ec923d22afd40c4c7086b /grc/gui/ActionHandler.py | |
parent | 8949a9e00e989e98abf334f839b7a4e91a2339e4 (diff) |
grc: Changed dialog to directly call the SCROLL_LOCK and CLEAR_REPORTS actions.
Moved clear reports under view and grouped all Report menu items together
Diffstat (limited to 'grc/gui/ActionHandler.py')
-rw-r--r-- | grc/gui/ActionHandler.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/grc/gui/ActionHandler.py b/grc/gui/ActionHandler.py index d76940515f..70e8064c5d 100644 --- a/grc/gui/ActionHandler.py +++ b/grc/gui/ActionHandler.py @@ -61,9 +61,6 @@ class ActionHandler: self.main_window = MainWindow(platform) self.main_window.connect('delete-event', self._quit) self.main_window.connect('key-press-event', self._handle_key_press) - # Add actions the report/log text_view can call back to from its context menu - self.main_window.text_display.clear_action = Actions.CLEAR_REPORTS - self.main_window.text_display.scroll_action = Actions.TOGGLE_SCROLL_LOCK self.get_page = self.main_window.get_page self.get_flow_graph = self.main_window.get_flow_graph self.get_focus_flag = self.main_window.get_focus_flag |