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
This commit is contained in:
Philipp Hörist 2018-09-06 21:17:05 +02:00 committed by Philipp Hörist
parent ebc0dd4536
commit 37420720fe
1 changed files with 0 additions and 7 deletions

View File

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