diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-history-window.c | 6 |
2 files changed, 10 insertions, 3 deletions
@@ -1,5 +1,12 @@ 2004-03-30 Piers Cornwell <piers@gnome.org> + * src/ephy-history-window.c: (confirmation_dialog_construct): + + Make buttons the same size in Industrial theme and make text + selectable. + +2004-03-30 Piers Cornwell <piers@gnome.org> + * data/glade/prefs-dialog.glade: Use right capitalisation for label. diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index d7d67ccbb..98914f857 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -252,9 +252,7 @@ confirmation_dialog_construct (EphyHistoryWindow *editor) gtk_container_set_border_width (GTK_CONTAINER (dialog), 6); gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 12); - button = gtk_button_new_from_stock (GTK_STOCK_CANCEL); - gtk_widget_show (button); - gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, GTK_RESPONSE_CANCEL); + gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); button = gtk_button_new (); gtk_widget_show (button); @@ -296,6 +294,7 @@ confirmation_dialog_construct (EphyHistoryWindow *editor) 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); str = g_strconcat ("<b><big>", _("Clear browsing history?"), @@ -307,6 +306,7 @@ confirmation_dialog_construct (EphyHistoryWindow *editor) label = gtk_label_new (_("Clearing the browsing history will cause all" " history links to be permanently deleted.")); + 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); gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, TRUE, 0); |