diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-24 00:35:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-24 00:35:44 +0300 |
commit | 43aa8e6bedff642ba584c447c03886c1f0c52aac (patch) | |
tree | 24818c9b3f5196e6c69b97b87d9a547bbbe5aa81 /src/gui/popups/speechbubble.cpp | |
parent | 98295d32030c620040e3e6bd912c6808174640e4 (diff) | |
download | manaverse-43aa8e6bedff642ba584c447c03886c1f0c52aac.tar.gz manaverse-43aa8e6bedff642ba584c447c03886c1f0c52aac.tar.bz2 manaverse-43aa8e6bedff642ba584c447c03886c1f0c52aac.tar.xz manaverse-43aa8e6bedff642ba584c447c03886c1f0c52aac.zip |
Remove default parameter from staticbrowserbox.
Diffstat (limited to 'src/gui/popups/speechbubble.cpp')
-rw-r--r-- | src/gui/popups/speechbubble.cpp | 3 |
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(); |