diff --git a/src/autotype/AutoType.cpp b/src/autotype/AutoType.cpp index 2df3b4f1e..976a7d46e 100644 --- a/src/autotype/AutoType.cpp +++ b/src/autotype/AutoType.cpp @@ -332,10 +332,9 @@ bool AutoType::parseActions(const QString& sequence, const Entry* entry, QList autoType = createActionFromTemplate(tmpl, entry); - if (autoType.isEmpty()) { - return false; + if (!autoType.isEmpty()) { + actions.append(autoType); } - actions.append(autoType); inTmpl = false; tmpl.clear(); } else {