diff options
Diffstat (limited to 'src/gui/popups/speechbubble.cpp')
-rw-r--r-- | src/gui/popups/speechbubble.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/popups/speechbubble.cpp b/src/gui/popups/speechbubble.cpp index 39a751dbe..0909df225 100644 --- a/src/gui/popups/speechbubble.cpp +++ b/src/gui/popups/speechbubble.cpp @@ -39,7 +39,7 @@ SpeechBubble::SpeechBubble() : mText(), mSpacing(mSkin ? mSkin->getOption("spacing") : 2), mCaption(new Label(this)), - mSpeechBox(new BrowserBox(this, BrowserBox::AUTO_SIZE, true, + mSpeechBox(new BrowserBox(this, BrowserBox::AUTO_SIZE, Opaque_true, "speechbrowserbox.xml")) { setContentSize(140, 46); @@ -47,7 +47,7 @@ SpeechBubble::SpeechBubble() : setMinHeight(8); mCaption->setFont(boldFont); - mSpeechBox->setOpaque(false); + mSpeechBox->setOpaque(Opaque_false); mSpeechBox->setForegroundColorAll(getThemeColor(ThemeColorId::BUBBLE_TEXT), getThemeColor(ThemeColorId::BUBBLE_TEXT_OUTLINE)); } |