]> git.saurik.com Git - wxWidgets.git/commitdiff
yet another fix for wxTextCtrl bg colour (patch 462838)
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 28 Sep 2001 14:33:54 +0000 (14:33 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 28 Sep 2001 14:33:54 +0000 (14:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11720 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/textctrl.cpp
src/gtk1/textctrl.cpp

index 35de57809a7bc4356f3516b039bcc9ad03596a7f..ec25530e465011016aea9312311fc8f97e34aa4a 100644 (file)
@@ -325,10 +325,7 @@ bool wxTextCtrl::Create( wxWindow *parent,
 
     m_cursor = wxCursor( wxCURSOR_IBEAM );
 
-    // FIXME: is the bg colour correct here?
-    wxTextAttr attrDef( colFg,
-                        wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW),
-                        parent->GetFont() );
+    wxTextAttr attrDef( colFg, m_backgroundColour, parent->GetFont() );
     SetDefaultStyle( attrDef );
 
     Show( TRUE );
index 35de57809a7bc4356f3516b039bcc9ad03596a7f..ec25530e465011016aea9312311fc8f97e34aa4a 100644 (file)
@@ -325,10 +325,7 @@ bool wxTextCtrl::Create( wxWindow *parent,
 
     m_cursor = wxCursor( wxCURSOR_IBEAM );
 
-    // FIXME: is the bg colour correct here?
-    wxTextAttr attrDef( colFg,
-                        wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW),
-                        parent->GetFont() );
+    wxTextAttr attrDef( colFg, m_backgroundColour, parent->GetFont() );
     SetDefaultStyle( attrDef );
 
     Show( TRUE );