aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-gui.c
diff options
context:
space:
mode:
authorPiers Cornwell <piers@gnome.org>2004-04-30 07:11:20 +0800
committerPiers Cornwell <piers@src.gnome.org>2004-04-30 07:11:20 +0800
commit27e82be02ab084c931677ae17e54579155d8235b (patch)
tree7d7310a0d77e4f8db8ca9720a5cf71cf07d330ca /lib/ephy-gui.c
parent37b6cdee54a229d78f9c955ddd8e5c395ef32155 (diff)
downloadgsoc2013-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.
Diffstat (limited to 'lib/ephy-gui.c')
-rw-r--r--lib/ephy-gui.c8
1 files changed, 5 insertions, 3 deletions
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);