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/speechbubble.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/speechbubble.cpp')
-rw-r--r-- | src/gui/speechbubble.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index fc820793c..1f96f56de 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -45,7 +45,7 @@ SpeechBubble::SpeechBubble() : mCaption->setFont(boldFont); mSpeechBox->setEditable(false); mSpeechBox->setOpaque(false); - mSpeechBox->setTextColor(&Theme::getThemeColor(Theme::BUBBLE_TEXT)); + mSpeechBox->setForegroundColor(Theme::getThemeColor(Theme::BUBBLE_TEXT)); add(mCaption); add(mSpeechBox); @@ -64,7 +64,7 @@ void SpeechBubble::setText(const std::string &text, const bool showName) if (text == mText && (mCaption->getWidth() <= mSpeechBox->getMinWidth())) return; - mSpeechBox->setTextColor(&Theme::getThemeColor(Theme::BUBBLE_TEXT)); + mSpeechBox->setForegroundColor(Theme::getThemeColor(Theme::BUBBLE_TEXT)); int width = mCaption->getWidth() + 2 * getPadding(); mSpeechBox->setTextWrapped(text, 130 > width ? 130 : width); |