diff --git a/src/gui/PasswordWidget.cpp b/src/gui/PasswordWidget.cpp index 03751c8b1..2568ff67b 100644 --- a/src/gui/PasswordWidget.cpp +++ b/src/gui/PasswordWidget.cpp @@ -231,7 +231,7 @@ bool PasswordWidget::eventFilter(QObject* watched, QEvent* event) if (isVisible() && (type == QEvent::KeyPress || type == QEvent::KeyRelease || type == QEvent::FocusIn)) { checkCapslockState(); } - if (type == QEvent::FocusIn || type == QEvent::FocusOut) { + if (type == QEvent::FocusIn || type == QEvent::FocusOut || type == QEvent::Hide) { osUtils->setUserInputProtection(type == QEvent::FocusIn); } } diff --git a/src/gui/osutils/macutils/MacUtils.cpp b/src/gui/osutils/macutils/MacUtils.cpp index 893ec8fcc..f7b652a62 100644 --- a/src/gui/osutils/macutils/MacUtils.cpp +++ b/src/gui/osutils/macutils/MacUtils.cpp @@ -152,11 +152,18 @@ bool MacUtils::isCapslockEnabled() void MacUtils::setUserInputProtection(bool enable) { + static bool secureInputEnabled = false; if (enable) { + // Always keep the internal counter set to 1 + if (secureInputEnabled) { + DisableSecureEventInput(); + } EnableSecureEventInput(); } else { DisableSecureEventInput(); } + // Store our last known state + secureInputEnabled = enable; } /**