mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Entry::autoTypeSequence() returns null string when no window matches.
Return QString() when a windowTitle is passed but doesn't match any auto-type association.
This commit is contained in:
parent
6d5b31f527
commit
f4a4930f42
@ -186,9 +186,12 @@ QString Entry::autoTypeSequence(const QString& windowTitle) const
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (sequence.isEmpty()) {
|
||||
return QString();
|
||||
}
|
||||
}
|
||||
else {
|
||||
sequence = m_data.defaultAutoTypeSequence;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user