diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2014-04-09 18:08:15 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2014-04-16 11:01:57 +0200 |
commit | f6366941a4d369ec2afd1a7d69d13a402c5473cb (patch) | |
tree | 8648dc9f5121739480937dfe33aaad030185b5d5 /grc | |
parent | 586d5494ab8914df9d6f2b1bfac04573c705a217 (diff) |
grc: tools menu entry 'more to come'
Diffstat (limited to 'grc')
-rw-r--r-- | grc/gui/Actions.py | 3 | ||||
-rw-r--r-- | grc/gui/Bars.py | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/grc/gui/Actions.py b/grc/gui/Actions.py index 97681eccd6..f633e7ced0 100644 --- a/grc/gui/Actions.py +++ b/grc/gui/Actions.py @@ -370,3 +370,6 @@ TOOLS_RUN_FDESIGN = Action( tooltip='Execute gr_filter_design', stock_id=gtk.STOCK_EXECUTE, ) +TOOLS_MORE_TO_COME = Action( + label='More to come', +) diff --git a/grc/gui/Bars.py b/grc/gui/Bars.py index ce72edeeaf..da1b1469e1 100644 --- a/grc/gui/Bars.py +++ b/grc/gui/Bars.py @@ -103,6 +103,8 @@ MENU_BAR_LIST = ( ]), (gtk.Action('Tools', '_Tools', None, None), [ Actions.TOOLS_RUN_FDESIGN, + None, + Actions.TOOLS_MORE_TO_COME, ]), (gtk.Action('Help', '_Help', None, None), [ Actions.HELP_WINDOW_DISPLAY, |