mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Implement Secure Input Field mode on macOS
* Fixes #4738 * Also fixes flaky handling of caps lock detection events
This commit is contained in:
parent
edab0faa94
commit
620abb96f2
9 changed files with 44 additions and 10 deletions
|
@ -150,6 +150,15 @@ bool MacUtils::isCapslockEnabled()
|
|||
#endif
|
||||
}
|
||||
|
||||
void MacUtils::setUserInputProtection(bool enable)
|
||||
{
|
||||
if (enable) {
|
||||
EnableSecureEventInput();
|
||||
} else {
|
||||
DisableSecureEventInput();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Toggle application state between foreground app and UIElement app.
|
||||
* Foreground apps have dock icons, UIElement apps do not.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue