From 9fb9a453ebaecd8697d026d5364b35a6dbdab7df Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Mon, 10 Oct 2005 14:57:16 +0000 Subject: [PATCH] combobox menus do not use mnemonic according to HIG --- src/roster_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roster_window.py b/src/roster_window.py index dd4dc0b1e..4568a2e37 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -2337,7 +2337,7 @@ _('If "%s" accepts this request you will know his status.') %jid) path = os.path.join(gajim.DATA_DIR, 'pixmaps', 'rename.png') img = gtk.Image() img.set_from_file(path) - liststore.append([_('_Change Status Message...'), img, '']) + liststore.append([_('Change Status Message...'), img, '']) # Add a Separator (self.iter_is_separator() checks on string SEPARATOR) liststore.append(['SEPARATOR', None, ''])