mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-02-04 17:05:23 -05:00
fix for loops now have diffrent variables. dont know why it worked before
This commit is contained in:
parent
6057c9f27d
commit
393017cf3b
@ -581,8 +581,8 @@ QList<AutoTypeAction*> AutoType::createActionFromTemplate(const QString& tmpl, c
|
||||
//allows to insert usernames and passwords multiple times
|
||||
if (!list.isEmpty()) {
|
||||
for (int i = 1; i < num; i++) {
|
||||
for (int i = 0; i < resolved.size(); i++) {
|
||||
list.append(list.at(i)->clone());
|
||||
for (int j = 0; j < resolved.size(); j++) {
|
||||
list.append(list.at(j)->clone());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user