mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-09-21 13:24:47 -04:00
Merge pull request #1354 from weslly/fix/autotype-regression
Fix auto-type regression introduced at #1174
This commit is contained in:
commit
5e38faa09d
1 changed files with 2 additions and 3 deletions
|
@ -332,10 +332,9 @@ bool AutoType::parseActions(const QString& sequence, const Entry* entry, QList<A
|
||||||
return false;
|
return false;
|
||||||
} else if (ch == '}') {
|
} else if (ch == '}') {
|
||||||
QList<AutoTypeAction*> autoType = createActionFromTemplate(tmpl, entry);
|
QList<AutoTypeAction*> autoType = createActionFromTemplate(tmpl, entry);
|
||||||
if (autoType.isEmpty()) {
|
if (!autoType.isEmpty()) {
|
||||||
return false;
|
|
||||||
}
|
|
||||||
actions.append(autoType);
|
actions.append(autoType);
|
||||||
|
}
|
||||||
inTmpl = false;
|
inTmpl = false;
|
||||||
tmpl.clear();
|
tmpl.clear();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue