]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/glcanvas.cpp
make IsEnabled() return false even if the window parent, and not the window itself...
[wxWidgets.git] / src / msw / glcanvas.cpp
index 64f90c4ef2dda749159fbed40f9fbf21aa541377..39e37c4f841c74dc34a2a0093d917ab1c3650eff 100644 (file)
@@ -549,9 +549,9 @@ void wxGLCanvas::OnSize(wxSizeEvent& WXUNUSED(event))
 void wxGLCanvas::SetCurrent(const wxGLContext& RC) const
 {
     // although on MSW it works even if the window is still hidden, it doesn't
-       // under wxGTK and documentation mentions that SetCurrent() can only be
-       // called for a shown window, so check it
-       wxASSERT_MSG( GetParent()->IsShown(), _T("can't make hidden GL canvas current") );
+    // under wxGTK and documentation mentions that SetCurrent() can only be
+    // called for a shown window, so check it
+    wxASSERT_MSG( GetParent()->IsShown(), _T("can't make hidden GL canvas current") );
 
     RC.SetCurrent(*this);
 }