From 49fc346491de3bb486563201d22226e27da73729 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Tue, 4 Nov 2008 20:53:37 +0000 Subject: [PATCH] (gtk) fix mnemonic collision in Edit > Preferences > Desktop, reported by Nemo @ http://forum.transmissionbt.com/viewtopic.php?f=1&t=6310&p=30583#p30578 --- gtk/tr-prefs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/tr-prefs.c b/gtk/tr-prefs.c index ab927b867..b3f297358 100644 --- a/gtk/tr-prefs.c +++ b/gtk/tr-prefs.c @@ -397,7 +397,7 @@ desktopPage( GObject * core ) t = hig_workarea_create( ); hig_workarea_add_section_title( t, &row, _( "Options" ) ); - s = _( "_Inhibit desktop hibernation when torrents are active" ); + s = _( "Inhibit desktop _hibernation when torrents are active" ); w = new_check_button( s, PREF_KEY_INHIBIT_HIBERNATION, core ); hig_workarea_add_wide_control( t, &row, w );