From 94fcffaa3303e30251ce07b7a9129a8dd91fecd2 Mon Sep 17 00:00:00 2001 From: Patanjali Somayaji Date: Mon, 3 May 2004 12:54:42 +0000 Subject: More HIGifying of the overwrite confirmation dialog - - title removed from 2004-05-03 Patanjali Somayaji * 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 --- ChangeLog | 8 ++++++++ lib/ephy-gui.c | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 942db8293..59291a75c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-05-03 Patanjali Somayaji + + * 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 + 2004-05-02 Piers Cornwell * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): 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; -- cgit v1.2.3