summaryrefslogtreecommitdiff
path: root/grc/gui/Actions.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2013-11-23 10:41:37 -0800
committerJohnathan Corgan <johnathan@corganlabs.com>2013-11-23 10:41:37 -0800
commit2d7438adb8b724f014b4448d7734aebbc66c78a9 (patch)
tree3292c3494432e721bd4a6e8a4e6a0813ecb2b9a7 /grc/gui/Actions.py
parentb6cf12e6e3a60afacb32c6943015a02dd0460313 (diff)
parenta00b94ec4a9949125ddb1711abf49d4d575d290d (diff)
Merge remote-tracking branch 'skoslowski/grc_toggle_widgets'
Diffstat (limited to 'grc/gui/Actions.py')
-rw-r--r--grc/gui/Actions.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/grc/gui/Actions.py b/grc/gui/Actions.py
index df6f7b2bc9..90e23d7fb7 100644
--- a/grc/gui/Actions.py
+++ b/grc/gui/Actions.py
@@ -233,6 +233,16 @@ ERRORS_WINDOW_DISPLAY = Action(
tooltip='View flow graph errors',
stock_id=gtk.STOCK_DIALOG_ERROR,
)
+TOGGLE_REPORT_WIDGET = Action(
+ label='_Reports',
+ tooltip='Toggle visibility of the Report widget',
+ keypresses=(gtk.keysyms.r, gtk.gdk.CONTROL_MASK),
+)
+TOGGLE_BLOCKTREE_WIDGET = Action(
+ label='_Block Tree',
+ tooltip='Toggle visibility of the block tree widget',
+ keypresses=(gtk.keysyms.b, gtk.gdk.CONTROL_MASK),
+)
ABOUT_WINDOW_DISPLAY = Action(
label='_About',
tooltip='About this program',