diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-28 23:43:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-28 23:43:54 +0300 |
commit | d7f2497abbc2be9ec2f8617232230d5328b1046d (patch) | |
tree | 6dc56d8444710121e54b619bb506af951076328b /src/gui/widgets/textbox.cpp | |
parent | 436abf9f8cc33dfff1fe21b8ec5e61854facbd0c (diff) | |
download | plus-d7f2497abbc2be9ec2f8617232230d5328b1046d.tar.gz plus-d7f2497abbc2be9ec2f8617232230d5328b1046d.tar.bz2 plus-d7f2497abbc2be9ec2f8617232230d5328b1046d.tar.xz plus-d7f2497abbc2be9ec2f8617232230d5328b1046d.zip |
Fix textbox font color.
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); } |