]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't set HINT_COMBO as wxPopupWindow is used for different windows as well
authorRobert Roebling <robert@roebling.de>
Tue, 7 Oct 2008 08:02:45 +0000 (08:02 +0000)
committerRobert Roebling <robert@roebling.de>
Tue, 7 Oct 2008 08:02:45 +0000 (08:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56142 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/popupwin.cpp

index 38ac3c14f41c9bfa58fa965360f63e38fdeb0424..ec300200c611064f3626ae87785de660f3243802 100644 (file)
@@ -114,7 +114,8 @@ bool wxPopupWindow::Create( wxWindow *parent, int style )
     g_object_ref( m_widget );
 
     gtk_widget_set_name( m_widget, "wxPopupWindow" );
-    gtk_window_set_type_hint( GTK_WINDOW(m_widget), GDK_WINDOW_TYPE_HINT_COMBO );
+    // wxPopupWindow is used for different windows as well
+    // gtk_window_set_type_hint( GTK_WINDOW(m_widget), GDK_WINDOW_TYPE_HINT_COMBO );
 
     GtkWidget *toplevel = gtk_widget_get_toplevel( parent->m_widget );
     if (GTK_IS_WINDOW (toplevel))