We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d120f2c commit 5cf0951Copy full SHA for 5cf0951
1 file changed
src/blocks/looksblocks.cpp
@@ -103,6 +103,14 @@ void LooksBlocks::onInit(IEngine *engine)
103
m_timeMap.erase(vm);
104
erase_if(m_waitingBubbles, [vm](const std::pair<Target *, VirtualMachine *> &pair) { return pair.second == vm; });
105
});
106
+
107
+ engine->stopped().connect([engine]() {
108
+ const auto &targets = engine->targets();
109
110
+ for (auto target : targets) {
111
+ target->setBubbleText("");
112
+ }
113
+ });
114
}
115
116
void LooksBlocks::compileSayForSecs(Compiler *compiler)
0 commit comments