]> git.saurik.com Git - wxWidgets.git/commitdiff
Create wxPopUpWindow hidden initially (like MSW, where
authorRobert Roebling <robert@roebling.de>
Fri, 25 Mar 2005 17:23:08 +0000 (17:23 +0000)
committerRobert Roebling <robert@roebling.de>
Fri, 25 Mar 2005 17:23:08 +0000 (17:23 +0000)
    this happens since it derives from wxTLW, I think).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33048 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/popupwin.cpp
src/gtk1/popupwin.cpp

index f2d3a67520304210d8d779717a000cebf309edf8..2ccbf663369b77a8e6ef7c59599512514d16ceee 100644 (file)
@@ -181,6 +181,9 @@ bool wxPopupWindow::Create( wxWindow *parent, int style )
         return FALSE;
     }
 
+    // Unlike windows, top level windows are created hidden by default.
+    m_isShown = false;
+    
     // All dialogs should really have this style
     m_windowStyle |= wxTAB_TRAVERSAL;
 
index f2d3a67520304210d8d779717a000cebf309edf8..2ccbf663369b77a8e6ef7c59599512514d16ceee 100644 (file)
@@ -181,6 +181,9 @@ bool wxPopupWindow::Create( wxWindow *parent, int style )
         return FALSE;
     }
 
+    // Unlike windows, top level windows are created hidden by default.
+    m_isShown = false;
+    
     // All dialogs should really have this style
     m_windowStyle |= wxTAB_TRAVERSAL;