[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 02/10: grc: show underscores in recent file
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 02/10: grc: show underscores in recent files menu |
Date: |
Mon, 25 Apr 2016 22:56:27 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit a3e22a162a9a567fc4159635bbb09f3a77c0fba7
Author: Sebastian Koslowski <address@hidden>
Date: Mon Apr 25 11:28:12 2016 +0200
grc: show underscores in recent files menu
---
grc/gui/Bars.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/grc/gui/Bars.py b/grc/gui/Bars.py
index 19f041f..8b389a7 100644
--- a/grc/gui/Bars.py
+++ b/grc/gui/Bars.py
@@ -188,7 +188,7 @@ class SubMenuCreator(object):
item = Actions.FLOW_GRAPH_NEW.create_menu_item()
item.set_label(name)
else:
- item = gtk.MenuItem(name)
+ item = gtk.MenuItem(name, use_underline=False)
item.connect('activate', self.callback_adaptor, (action, key))
menu.append(item)
menu.show_all()
@@ -201,7 +201,7 @@ class SubMenuCreator(object):
recent_files = Preferences.get_recent_files()
if len(recent_files) > 0:
for i, file_name in enumerate(recent_files):
- item = gtk.MenuItem("%d. %s" % (i+1, file_name))
+ item = gtk.MenuItem("%d. %s" % (i+1, file_name),
use_underline=False)
item.connect('activate', self.callback_adaptor,
(action, file_name))
menu.append(item)
- [Commit-gnuradio] [gnuradio] branch maint updated (2a68b68 -> 4aa9404), git, 2016/04/25
- [Commit-gnuradio] [gnuradio] 07/10: udp sink: actually send 0-byte packets at EOF, git, 2016/04/25
- [Commit-gnuradio] [gnuradio] 09/10: Merge remote-tracking branch 'mmueller/default_conf_fix_comment' into maint, git, 2016/04/25
- [Commit-gnuradio] [gnuradio] 08/10: Merge remote-tracking branch 'mmueller/gr_uhd_blocks_samp_rate_before_time_source' into maint, git, 2016/04/25
- [Commit-gnuradio] [gnuradio] 02/10: grc: show underscores in recent files menu,
git <=
- [Commit-gnuradio] [gnuradio] 05/10: config parser doesn't understand C Multiline Comments, git, 2016/04/25
- [Commit-gnuradio] [gnuradio] 06/10: improved parsability by OVER 9000, git, 2016/04/25
- [Commit-gnuradio] [gnuradio] 10/10: Merge remote-tracking branch 'gnuradio-wg-grc/maint_grcwg' into maint, git, 2016/04/25
- [Commit-gnuradio] [gnuradio] 03/10: grc: don't try to auto-generate non-hier blocks, git, 2016/04/25
- [Commit-gnuradio] [gnuradio] 04/10: setting the sample rate before setting the time source avoiding auto-MCR trap, git, 2016/04/25
- [Commit-gnuradio] [gnuradio] 01/10: qtgui: more appropriate doxygen link., git, 2016/04/25