[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 02/04: grc: tools menu entry 'more to come'
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 02/04: grc: tools menu entry 'more to come' |
Date: |
Fri, 18 Apr 2014 18:06:00 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch master
in repository gnuradio.
commit f6366941a4d369ec2afd1a7d69d13a402c5473cb
Author: Sebastian Koslowski <address@hidden>
Date: Wed Apr 9 18:08:15 2014 +0200
grc: tools menu entry 'more to come'
---
grc/gui/Actions.py | 3 +++
grc/gui/Bars.py | 2 ++
2 files changed, 5 insertions(+)
diff --git a/grc/gui/Actions.py b/grc/gui/Actions.py
index 97681ec..f633e7c 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 ce72ede..da1b146 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,