diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | lib/ephy-gui.c | 3 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,11 @@ +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 + 2004-05-02 Piers Cornwell <piers@gnome.org> * 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; |