]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/dc.cpp
Tries to fix wxListBox focus problems.
[wxWidgets.git] / src / mgl / dc.cpp
index 6d1111607dbdcbea5ba0e0e9950c491ee819a048..692ac021d420f8f06e7b6ccf1324cb327aa49a2b 100644 (file)
@@ -1114,9 +1114,11 @@ void wxDC::SetPalette(const wxPalette& palette)
 
 void wxDC::SetFont(const wxFont& font)
 {
-    wxCHECK_RET( font.Ok(), wxT("invalid font") );
-    m_font = font;
-    m_mglFont = NULL;
+    if ( font.Ok() )
+    {
+        m_font = font;
+        m_mglFont = NULL;
+    }
 }
 
 void wxDC::SetBackground(const wxBrush& brush)