summaryrefslogtreecommitdiff
path: root/src/gui/popups/speechbubble.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-24 00:35:44 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-24 00:35:44 +0300
commit43aa8e6bedff642ba584c447c03886c1f0c52aac (patch)
tree24818c9b3f5196e6c69b97b87d9a547bbbe5aa81 /src/gui/popups/speechbubble.cpp
parent98295d32030c620040e3e6bd912c6808174640e4 (diff)
downloadmv-43aa8e6bedff642ba584c447c03886c1f0c52aac.tar.gz
mv-43aa8e6bedff642ba584c447c03886c1f0c52aac.tar.bz2
mv-43aa8e6bedff642ba584c447c03886c1f0c52aac.tar.xz
mv-43aa8e6bedff642ba584c447c03886c1f0c52aac.zip
Remove default parameter from staticbrowserbox.
Diffstat (limited to 'src/gui/popups/speechbubble.cpp')
-rw-r--r--src/gui/popups/speechbubble.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/popups/speechbubble.cpp b/src/gui/popups/speechbubble.cpp
index 1ae67fb99..f4c74cfae 100644
--- a/src/gui/popups/speechbubble.cpp
+++ b/src/gui/popups/speechbubble.cpp
@@ -78,7 +78,8 @@ void SpeechBubble::setText(const std::string &text, const bool showName)
int width = mCaption->getWidth();
mSpeechBox->clearRows();
- mSpeechBox->addRow(text);
+ mSpeechBox->addRow(text,
+ false);
mSpeechBox->updateHeight();
const int speechWidth = mSpeechBox->getWidth();