mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-02 03:26:14 -04:00
MacOS: Fix Global Autotype when frontmost window title is empty.
This commit is contained in:
parent
b22b67c7d9
commit
11dec27dd1
1 changed files with 3 additions and 1 deletions
|
@ -98,7 +98,9 @@ QString AutoTypePlatformMac::activeWindowTitle()
|
|||
if (windowLayer(window) == 0) {
|
||||
// First toplevel window in list (front to back order)
|
||||
title = windowTitle(window);
|
||||
break;
|
||||
if (!title.isEmpty()) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue