From 3a81bf73141dea9d543c06de074960e27c99b06e Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Mon, 11 Oct 2004 23:29:32 +0000 Subject: [PATCH] set the "skip_taskbar_hint" and "skip_pager_hint" properties on the 2004-10-12 Sven Neumann * app/widgets/gimpprogressdialog.c (gimp_progress_dialog_new): set the "skip_taskbar_hint" and "skip_pager_hint" properties on the progress window. --- ChangeLog | 6 ++++++ app/widgets/gimpprogressdialog.c | 8 +++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 22f225004b..ffc397cf91 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-10-12 Sven Neumann + + * app/widgets/gimpprogressdialog.c (gimp_progress_dialog_new): set + the "skip_taskbar_hint" and "skip_pager_hint" properties on the + progress window. + 2004-10-11 Manish Singh * plug-ins/fp/fp.c: Moved from here... diff --git a/app/widgets/gimpprogressdialog.c b/app/widgets/gimpprogressdialog.c index 6318f06567..265363ff31 100644 --- a/app/widgets/gimpprogressdialog.c +++ b/app/widgets/gimpprogressdialog.c @@ -237,8 +237,10 @@ GtkWidget * gimp_progress_dialog_new (void) { return g_object_new (GIMP_TYPE_PROGRESS_DIALOG, - "title", _("Progress"), - "role", "progress", - "resizable", FALSE, + "title", _("Progress"), + "role", "progress", + "skip_taskbar_hint", TRUE, + "skip_pager_hint", TRUE, + "resizable", FALSE, NULL); }