diff options
author | Piers Cornwell <piers@gnome.org> | 2004-03-27 02:56:17 +0800 |
---|---|---|
committer | Piers Cornwell <piers@src.gnome.org> | 2004-03-27 02:56:17 +0800 |
commit | 41fa561e1df6493e58188afd1d6098109398b929 (patch) | |
tree | 4ec9538af0a23560cadb0a9644030a87fec27823 | |
parent | 03286db6ece178142863793700809427ba5b3ca5 (diff) | |
download | gsoc2013-epiphany-41fa561e1df6493e58188afd1d6098109398b929.tar gsoc2013-epiphany-41fa561e1df6493e58188afd1d6098109398b929.tar.gz gsoc2013-epiphany-41fa561e1df6493e58188afd1d6098109398b929.tar.bz2 gsoc2013-epiphany-41fa561e1df6493e58188afd1d6098109398b929.tar.lz gsoc2013-epiphany-41fa561e1df6493e58188afd1d6098109398b929.tar.xz gsoc2013-epiphany-41fa561e1df6493e58188afd1d6098109398b929.tar.zst gsoc2013-epiphany-41fa561e1df6493e58188afd1d6098109398b929.zip |
Fix duplicate accesskey, use correct case for button text and make message
2004-03-26 Piers Cornwell <piers@gnome.org>
* src/ephy-window.c: (confirm_close_with_modified_forms):
Fix duplicate accesskey, use correct case for button
text and make message selectable.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-window.c | 3 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2004-03-26 Piers Cornwell <piers@gnome.org> + + * src/ephy-window.c: (confirm_close_with_modified_forms): + + Fix duplicate accesskey, use correct case for button + text and make message selectable. + 2004-03-26 Marco Pesenti Gritti <marco@gnome.org> * embed/mozilla/Makefile.am: diff --git a/src/ephy-window.c b/src/ephy-window.c index d3069ba36..f01399e55 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -616,7 +616,7 @@ confirm_close_with_modified_forms (EphyWindow *window) GTK_WINDOW (window), GTK_DIALOG_NO_SEPARATOR | GTK_DIALOG_MODAL, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, - _("_Close document"), GTK_RESPONSE_OK, + _("Close _Document"), GTK_RESPONSE_OK, NULL); gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); @@ -639,6 +639,7 @@ confirm_close_with_modified_forms (EphyWindow *window) gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0); label = gtk_label_new (NULL); + gtk_label_set_selectable (GTK_LABEL (label), TRUE); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); |