summaryrefslogtreecommitdiff
path: root/src/being/being.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r--src/being/being.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp
index 0459d83e9..072d1f30a 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -650,11 +650,11 @@ void Being::setSpeech(const std::string &restrict text) restrict2
}
else
{
- const bool isShowName = (speech == BeingSpeech::NAME_IN_BUBBLE);
if (mSpeechBubble == nullptr)
createSpeechBubble();
if (mSpeechBubble != nullptr)
{
+ const bool isShowName = (speech == BeingSpeech::NAME_IN_BUBBLE);
mSpeechBubble->setCaption(isShowName ? mName : "",
&theme->getColor(ThemeColorId::BUBBLE_NAME, 255),
&theme->getColor(ThemeColorId::BUBBLE_NAME_OUTLINE, 255));