diff --git a/ChangeLog b/ChangeLog index 62e539d724..26eddf2ce2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2002-01-17 Matthias Clasen - * gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: + * gtk/gtkinputdialog.c, + gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: Mark children as composite. (#66360) * gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 62e539d724..26eddf2ce2 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,6 +1,7 @@ 2002-01-17 Matthias Clasen - * gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: + * gtk/gtkinputdialog.c, + gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: Mark children as composite. (#66360) * gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 62e539d724..26eddf2ce2 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,6 +1,7 @@ 2002-01-17 Matthias Clasen - * gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: + * gtk/gtkinputdialog.c, + gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: Mark children as composite. (#66360) * gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 62e539d724..26eddf2ce2 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,6 +1,7 @@ 2002-01-17 Matthias Clasen - * gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: + * gtk/gtkinputdialog.c, + gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: Mark children as composite. (#66360) * gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 62e539d724..26eddf2ce2 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,6 +1,7 @@ 2002-01-17 Matthias Clasen - * gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: + * gtk/gtkinputdialog.c, + gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: Mark children as composite. (#66360) * gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 62e539d724..26eddf2ce2 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,6 +1,7 @@ 2002-01-17 Matthias Clasen - * gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: + * gtk/gtkinputdialog.c, + gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: Mark children as composite. (#66360) * gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 62e539d724..26eddf2ce2 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,6 +1,7 @@ 2002-01-17 Matthias Clasen - * gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: + * gtk/gtkinputdialog.c, + gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c: Mark children as composite. (#66360) * gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain diff --git a/gtk/gtkinputdialog.c b/gtk/gtkinputdialog.c index 353c311281..0333ec8ef0 100644 --- a/gtk/gtkinputdialog.c +++ b/gtk/gtkinputdialog.c @@ -175,6 +175,8 @@ gtk_input_dialog_init (GtkInputDialog *inputd) GList *tmp_list; GList *device_info; + gtk_widget_push_composite_child (); + device_info = gdk_devices_list (); /* shell and main vbox */ @@ -343,6 +345,8 @@ gtk_input_dialog_init (GtkInputDialog *inputd) gtk_widget_grab_default (inputd->close_button); gtk_widget_show (vbox); + + gtk_widget_pop_composite_child (); }