summaryrefslogtreecommitdiff
path: root/grc/gui/Actions.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2012-09-28 10:11:50 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2012-09-28 10:11:50 -0700
commit91d630638d6cbe237f0fa1a978f3161a9a041895 (patch)
tree3049c13b908105f04d1d8fb7bd8c0253d902c500 /grc/gui/Actions.py
parentecc8f73c367fbd7fed43aae67dea67261e374a8b (diff)
parent515d1b6f91f5dd28997525b1e88006bbfc0f170a (diff)
Merge branch 'master' into next
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 2a8676e9b4..9d321f98bc 100644
--- a/grc/gui/Actions.py
+++ b/grc/gui/Actions.py
@@ -279,3 +279,13 @@ BLOCK_INC_TYPE = Action(
BLOCK_DEC_TYPE = Action(
keypresses=(gtk.keysyms.Up, NO_MODS_MASK),
)
+RELOAD_BLOCKS = Action(
+ label='Reload _Blocks',
+ tooltip='Reload Blocks',
+ stock_id=gtk.STOCK_REFRESH
+)
+OPEN_HIER = Action(
+ label='Open H_ier',
+ tooltip='Open the source of the selected hierarchical block',
+ stock_id=gtk.STOCK_JUMP_TO,
+)