]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ctrlcmn.cpp
changed charset to iso8859-2
[wxWidgets.git] / src / common / ctrlcmn.cpp
index a61beaa16c07f5fe1a1d4251f9b76ce34040b794..2ebabc1f0d715a92784f61936f894d6ba3ba5748 100644 (file)
@@ -92,8 +92,14 @@ bool wxControlBase::CreateControl(wxWindowBase *parent,
 // inherit colour and font settings from the parent window
 void wxControlBase::InheritAttributes()
 {
+    // it definitely doesn't make sense to inherit the background colour as the
+    // controls typically have their own standard one and probably not the
+    // foreground neither?
+#if 0
     SetBackgroundColour(GetParent()->GetBackgroundColour());
     SetForegroundColour(GetParent()->GetForegroundColour());
+#endif // 0
+
     SetFont(GetParent()->GetFont());
 }