From 05307bd6098343993b6b57544ee5fccd2a3ce7ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Thu, 6 Sep 2018 21:17:05 +0200 Subject: [PATCH] Windows: Remove locked screen detection This does not reliably tell us when the screen is locked. For example this triggers when a UAC prompt is active. From the Windows documentation there is no way to determine if a workstation is locked Fixes #9117 --- gajim/common/idle.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/gajim/common/idle.py b/gajim/common/idle.py index 5bce7699f..034cf0750 100644 --- a/gajim/common/idle.py +++ b/gajim/common/idle.py @@ -168,13 +168,6 @@ class WindowsIdleMonitor: info = self.SystemParametersInfo(0x72, 0, ctypes.byref(saver_runing), 0) if info and saver_runing.value: return True - - # Check if Screen is locked - desk = self.OpenInputDesktop(0, False, 0) - if not desk: - return True - self.CloseDesktop(desk) - return False