diff options
author | Piers Cornwell <piers@gnome.org> | 2004-04-30 07:11:20 +0800 |
---|---|---|
committer | Piers Cornwell <piers@src.gnome.org> | 2004-04-30 07:11:20 +0800 |
commit | 27e82be02ab084c931677ae17e54579155d8235b (patch) | |
tree | 7d7310a0d77e4f8db8ca9720a5cf71cf07d330ca | |
parent | 37b6cdee54a229d78f9c955ddd8e5c395ef32155 (diff) | |
download | gsoc2013-epiphany-27e82be02ab084c931677ae17e54579155d8235b.tar gsoc2013-epiphany-27e82be02ab084c931677ae17e54579155d8235b.tar.gz gsoc2013-epiphany-27e82be02ab084c931677ae17e54579155d8235b.tar.bz2 gsoc2013-epiphany-27e82be02ab084c931677ae17e54579155d8235b.tar.lz gsoc2013-epiphany-27e82be02ab084c931677ae17e54579155d8235b.tar.xz gsoc2013-epiphany-27e82be02ab084c931677ae17e54579155d8235b.tar.zst gsoc2013-epiphany-27e82be02ab084c931677ae17e54579155d8235b.zip |
More HIG love for overwrite confirmation. Partial fix for bug #133152.
2004-04-30 Piers Cornwell <piers@gnome.org>
* lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file):
More HIG love for overwrite confirmation. Partial fix for bug #133152.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/ephy-gui.c | 8 |
2 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2004-04-30 Piers Cornwell <piers@gnome.org> + + * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): + + More HIG love for overwrite confirmation. Partial fix for bug #133152. + 2004-04-29 Marco Pesenti Gritti <marco@gnome.org> * embed/mozilla/EventContext.cpp: diff --git a/lib/ephy-gui.c b/lib/ephy-gui.c index f621395d2..7d3000008 100644 --- a/lib/ephy-gui.c +++ b/lib/ephy-gui.c @@ -95,22 +95,24 @@ ephy_gui_confirm_overwrite_file (GtkWidget *parent, const char *filename) primary_text = g_strdup_printf (_("A file %s already exists."), converted); - question = g_strdup_printf ("<b>%s</b>\n\n%s", primary_text, + + question = g_strdup_printf ("<b><big>%s</big></b>\n\n%s", primary_text, _("If you choose to overwrite this file, " "the contents will be lost.")); dialog = gtk_dialog_new_with_buttons (_("Overwrite File"), parent ? GTK_WINDOW (parent) : NULL, - GTK_DIALOG_MODAL, + GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR, NULL); hbox = gtk_hbox_new (FALSE, 6); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), hbox, TRUE, TRUE, 12); - image = gtk_image_new_from_stock (GTK_STOCK_DIALOG_QUESTION, + image = gtk_image_new_from_stock (GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_DIALOG); gtk_misc_set_alignment (GTK_MISC (image), 0.5, 0.0); gtk_box_pack_start (GTK_BOX (hbox), image, TRUE, TRUE, 0); label = gtk_label_new (NULL); + gtk_label_set_selectable (GTK_LABEL (label), TRUE); gtk_label_set_markup (GTK_LABEL (label), question); gtk_box_pack_start (GTK_BOX (hbox), label, TRUE, TRUE, 0); gtk_widget_show_all (hbox); |