diff options
| author | selsta <selsta@sent.at> | 2019-07-16 14:17:22 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-07-16 14:17:22 +0200 |
| commit | b96004a101d45dc30114afb1c50bcfbc58c18454 (patch) | |
| tree | 7f2d51426f19be8fdc175ce8585c21afb54395a6 | |
| parent | cfec9dde968cb89f8fe5293958b82181348111ea (diff) | |
| download | monzero-gui-b96004a101d45dc30114afb1c50bcfbc58c18454.tar.gz monzero-gui-b96004a101d45dc30114afb1c50bcfbc58c18454.tar.xz monzero-gui-b96004a101d45dc30114afb1c50bcfbc58c18454.zip | |
main: don't lock on inactivity if passwordDialog is visible
| -rw-r--r-- | main.qml | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2192,6 +2192,7 @@ ApplicationWindow { function checkInUserActivity() { if(rootItem.state !== "normal") return; if(!persistentSettings.lockOnUserInActivity) return; + if(passwordDialog.visible) return; // prompt password after X seconds of inactivity var epoch = Math.floor((new Date).getTime() / 1000); |
