mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 12:37:39 +03:00
Show Auto-Type select dialog even if window title is empty
* Fixes #11597
This commit is contained in:
parent
253bb42ac0
commit
2ea656bc27
1 changed files with 20 additions and 25 deletions
|
@ -434,22 +434,14 @@ void AutoType::startGlobalAutoType(const QString& search)
|
|||
*/
|
||||
void AutoType::performGlobalAutoType(const QList<QSharedPointer<Database>>& dbList, const QString& search)
|
||||
{
|
||||
if (!m_plugin) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!m_inGlobalAutoTypeDialog.tryLock()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_windowTitleForGlobal.isEmpty()) {
|
||||
m_inGlobalAutoTypeDialog.unlock();
|
||||
if (!m_plugin || !m_inGlobalAutoTypeDialog.tryLock()) {
|
||||
return;
|
||||
}
|
||||
|
||||
QList<AutoTypeMatch> matchList;
|
||||
// Generate entry/sequence match list if there is a valid window title
|
||||
if (!m_windowTitleForGlobal.isEmpty()) {
|
||||
bool hideExpired = config()->get(Config::AutoTypeHideExpiredEntry).toBool();
|
||||
|
||||
for (const auto& db : dbList) {
|
||||
const QList<Entry*> dbEntries = db->rootGroup()->entriesRecursive();
|
||||
for (auto entry : dbEntries) {
|
||||
|
@ -467,6 +459,9 @@ void AutoType::performGlobalAutoType(const QList<QSharedPointer<Database>>& dbLi
|
|||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
qWarning() << "Auto-Type: Window title was empty from the operating system";
|
||||
}
|
||||
|
||||
// Show the selection dialog if we always ask, have multiple matches, or no matches
|
||||
if (getMainWindow()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue