diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | gtk/gtkentrycompletion.c | 1 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,11 @@ +2008-06-02 Matthias Clasen <mclasen@redhat.com> + + Bug 536092 – GtkEntryCompletion's popup window should set type hint + + * gtk/gtkentrycompletion.c (gtk_entry_completion_init): Set + a type hint on the popup window to help compiz. + Patch by Vaclav Slavik. + 2008-06-02 Claudio Saavedra <csaavedra@igalia.com> Bug 535862 – gtk_action_create_icon can't create icons from the diff --git a/gtk/gtkentrycompletion.c b/gtk/gtkentrycompletion.c index ed1d3c1fe3..2fc582ecdf 100644 --- a/gtk/gtkentrycompletion.c +++ b/gtk/gtkentrycompletion.c @@ -505,6 +505,7 @@ gtk_entry_completion_init (GtkEntryCompletion *completion) /* pack it all */ priv->popup_window = gtk_window_new (GTK_WINDOW_POPUP); gtk_window_set_resizable (GTK_WINDOW (priv->popup_window), FALSE); + gtk_window_set_type_hint(GTK_WINDOW(priv->popup_window), GDK_WINDOW_TYPE_HINT_COMBO); g_signal_connect (priv->popup_window, "key_press_event", G_CALLBACK (gtk_entry_completion_popup_key_event), completion); |