diff options
Diffstat (limited to 'src/gui/widgets/textbox.cpp')
-rw-r--r-- | src/gui/widgets/textbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/textbox.cpp b/src/gui/widgets/textbox.cpp index 3254f9f28..8af080294 100644 --- a/src/gui/widgets/textbox.cpp +++ b/src/gui/widgets/textbox.cpp @@ -35,9 +35,9 @@ TextBox::TextBox() : gcn::TextBox(), - mMinWidth(getWidth()), - mTextColor(&Theme::getThemeColor(Theme::TEXTBOX)) + mMinWidth(getWidth()) { + mForegroundColor = Theme::getThemeColor(Theme::TEXTBOX); setOpaque(false); setFrameSize(0); } |