From 41fa561e1df6493e58188afd1d6098109398b929 Mon Sep 17 00:00:00 2001 From: Piers Cornwell Date: Fri, 26 Mar 2004 18:56:17 +0000 Subject: Fix duplicate accesskey, use correct case for button text and make message 2004-03-26 Piers Cornwell * src/ephy-window.c: (confirm_close_with_modified_forms): Fix duplicate accesskey, use correct case for button text and make message selectable. --- ChangeLog | 7 +++++++ src/ephy-window.c | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f0006b7bf..92401b863 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-03-26 Piers Cornwell + + * 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 * 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); -- cgit v1.2.3