]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/app.cpp
new wxStringTokenizer
[wxWidgets.git] / src / gtk / app.cpp
index 98327a2aee941a3c958e9ad2fb31147e92ccf649..9b13515ed41cf1ea66025cca230e1af6bd7da590 100644 (file)
@@ -250,6 +250,8 @@ wxApp::wxApp()
 #endif
 
     m_colorCube = (unsigned char*) NULL;
+    
+    m_useBestVisual = FALSE;
 }
 
 wxApp::~wxApp()
@@ -271,7 +273,8 @@ bool wxApp::OnInitGui()
        we make sure we get the best. this can sometimes be wasteful,
        of course, but what do these guys pay $30.000 for? */
        
-    if (gdk_visual_get_best() != gdk_visual_get_system())
+    if ((gdk_visual_get_best() != gdk_visual_get_system()) &&
+        (m_useBestVisual))
     {
         GdkVisual* vis = gdk_visual_get_best();
         gtk_widget_set_default_visual( vis );