diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-08-15 18:17:01 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-08-15 18:17:01 +0000 |
commit | cbd1435c88d83b46efad46ea5e1655736b502e41 (patch) | |
tree | 526bfa0231f5deae475174078135c4d2285457d5 /gtk/gtkdialog.c | |
parent | f2f86e5dc978291cbc3bea557885c24d890fceff (diff) | |
download | gtk+-cbd1435c88d83b46efad46ea5e1655736b502e41.tar.gz |
When using gtk_dialog_run() for modal dialogs, make sure to inherit the
2005-08-15 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c: When using gtk_dialog_run() for
modal dialogs, make sure to inherit the window group from
the parent, since we don't inherit window groups across
transient parents currently. (#312918, Christian Persch)
* gtk/gtkmessagedialog.c (gtk_message_dialog_new):
* gtk/gtkdialog.c (gtk_dialog_run): Slight update to the docs.
Diffstat (limited to 'gtk/gtkdialog.c')
-rw-r--r-- | gtk/gtkdialog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkdialog.c b/gtk/gtkdialog.c index 50a3871e68..21e463c13d 100644 --- a/gtk/gtkdialog.c +++ b/gtk/gtkdialog.c @@ -962,9 +962,9 @@ run_destroy_handler (GtkDialog *dialog, gpointer data) * * Note that even though the recursive main loop gives the effect of a * modal dialog (it prevents the user from interacting with other - * windows while the dialog is run), callbacks such as timeouts, - * IO channel watches, DND drops, etc, <emphasis>will</emphasis> be - * triggered during a gtk_dialog_run() call. + * windows in the same window group while the dialog is run), callbacks + * such as timeouts, IO channel watches, DND drops, etc, <emphasis>will</emphasis> + * be triggered during a gtk_dialog_run() call. * * Return value: response ID **/ |