diff options
author | Patanjali Somayaji <patanjali@codito.com> | 2004-05-03 20:54:42 +0800 |
---|---|---|
committer | Patanjali Somayaji <patanja@src.gnome.org> | 2004-05-03 20:54:42 +0800 |
commit | 94fcffaa3303e30251ce07b7a9129a8dd91fecd2 (patch) | |
tree | c0e5d38d1a889d270d54c388bb38a61937a1cd84 /lib | |
parent | 7091b0760a43881a451adc5195bf1bc03ae70163 (diff) | |
download | gsoc2013-epiphany-94fcffaa3303e30251ce07b7a9129a8dd91fecd2.tar gsoc2013-epiphany-94fcffaa3303e30251ce07b7a9129a8dd91fecd2.tar.gz gsoc2013-epiphany-94fcffaa3303e30251ce07b7a9129a8dd91fecd2.tar.bz2 gsoc2013-epiphany-94fcffaa3303e30251ce07b7a9129a8dd91fecd2.tar.lz gsoc2013-epiphany-94fcffaa3303e30251ce07b7a9129a8dd91fecd2.tar.xz gsoc2013-epiphany-94fcffaa3303e30251ce07b7a9129a8dd91fecd2.tar.zst gsoc2013-epiphany-94fcffaa3303e30251ce07b7a9129a8dd91fecd2.zip |
More HIGifying of the overwrite confirmation dialog - - title removed from
2004-05-03 Patanjali Somayaji <patanjali@codito.com>
* lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file):
More HIGifying of the overwrite confirmation dialog -
- title removed from dialog
- dialog removed from window list
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-gui.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ephy-gui.c b/lib/ephy-gui.c index a20dbcd46..460f817c6 100644 --- a/lib/ephy-gui.c +++ b/lib/ephy-gui.c @@ -100,7 +100,7 @@ ephy_gui_confirm_overwrite_file (GtkWidget *parent, const char *filename) _("If you choose to overwrite this file, " "the contents will be lost.")); - dialog = gtk_dialog_new_with_buttons (_("Overwrite File"), + dialog = gtk_dialog_new_with_buttons (_(""), parent ? GTK_WINDOW (parent) : NULL, GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR, GTK_STOCK_CANCEL, @@ -120,6 +120,7 @@ ephy_gui_confirm_overwrite_file (GtkWidget *parent, const char *filename) gtk_widget_show_all (hbox); gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); + gtk_window_set_skip_taskbar_hint (GTK_WINDOW (dialog), TRUE); gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (dialog)), 6); gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL); res = (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) ? TRUE : FALSE; |