diff --git a/src/lib/component/controller/helper/ActivationTranslator.cpp b/src/lib/component/controller/helper/ActivationTranslator.cpp index 4e56f73a..9a63b0ae 100644 --- a/src/lib/component/controller/helper/ActivationTranslator.cpp +++ b/src/lib/component/controller/helper/ActivationTranslator.cpp @@ -108,6 +108,9 @@ std::shared_ptr ActivationTranslator::translateMessage(co m = std::make_shared(tokenIds); m->undoRedoType = message->undoRedoType; m->setKeepContent(message->keepContent()); - m->isFromSearch = true; + if (message->isFresh()) + { + m->isFromSearch = true; + } return m; }