set the "skip_taskbar_hint" and "skip_pager_hint" properties on the

2004-10-12  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimpprogressdialog.c (gimp_progress_dialog_new): set
	the "skip_taskbar_hint" and "skip_pager_hint" properties on the
	progress window.
This commit is contained in:
Sven Neumann
2004-10-11 23:29:32 +00:00
committed by Sven Neumann
parent 176e1074be
commit 3a81bf7314
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2004-10-12 Sven Neumann <sven@gimp.org>
* 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 <yosh@gimp.org>
* plug-ins/fp/fp.c: Moved from here...

View File

@ -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);
}