Implement Secure Input Field mode on macOS

* Fixes #4738
* Also fixes flaky handling of caps lock detection events
This commit is contained in:
Jonathan White 2025-01-04 09:38:02 -05:00
parent edab0faa94
commit 620abb96f2
9 changed files with 44 additions and 10 deletions

View file

@ -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.