diff options
author | Jiro Matsuzawa <jmatsuzawa@src.gnome.org> | 2012-01-04 10:18:02 +0800 |
---|---|---|
committer | Jiro Matsuzawa <jmatsuzawa@src.gnome.org> | 2012-01-06 17:47:21 +0800 |
commit | 5a3a574efde297e2d9687ace8fb49026110e0259 (patch) | |
tree | 0dbe339fd423e2b3baaa3f1df4c3d2285b797d6d /src | |
parent | 9c4a9e1156c56439f1ac500bed216df35754ab1a (diff) | |
download | gsoc2013-epiphany-5a3a574efde297e2d9687ace8fb49026110e0259.tar gsoc2013-epiphany-5a3a574efde297e2d9687ace8fb49026110e0259.tar.gz gsoc2013-epiphany-5a3a574efde297e2d9687ace8fb49026110e0259.tar.bz2 gsoc2013-epiphany-5a3a574efde297e2d9687ace8fb49026110e0259.tar.lz gsoc2013-epiphany-5a3a574efde297e2d9687ace8fb49026110e0259.tar.xz gsoc2013-epiphany-5a3a574efde297e2d9687ace8fb49026110e0259.tar.zst gsoc2013-epiphany-5a3a574efde297e2d9687ace8fb49026110e0259.zip |
Add mnemonics for password/recovery infobars
'Store password' and 'Session recovery' infobars had no mnemonics in
their buttons.
Bug #667238
Signed-off-by: Diego Escalante Urrelo <descalante@igalia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-session.c b/src/ephy-session.c index c7771fbde..a03d15690 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -769,12 +769,12 @@ session_command_dispatch (EphySession *session) button_box = gtk_button_box_new (GTK_ORIENTATION_HORIZONTAL); gtk_container_add (GTK_CONTAINER (action_area), button_box); - action_button = gtk_button_new_with_label (_("Don't recover")); + action_button = gtk_button_new_with_mnemonic (_("_Don't recover")); g_signal_connect (action_button, "clicked", G_CALLBACK (send_no_response_cb), info_bar); gtk_box_pack_start (GTK_BOX (button_box), action_button, FALSE, FALSE, 0); - action_button = gtk_button_new_with_label (_("Recover session")); + action_button = gtk_button_new_with_mnemonic (_("_Recover session")); g_signal_connect (action_button, "clicked", G_CALLBACK (send_yes_response_cb), info_bar); gtk_box_pack_start (GTK_BOX (button_box), action_button, FALSE, FALSE, 0); |