Fixed loss of ctrl+alt+del key releases when the Winlogin desktop

is accessible (was already fixed when inaccessible).  This change
also ignores press and release of virtual key 0, which should never
happen but does according to one user.
This commit is contained in:
crs
2003-05-26 09:46:52 +00:00
parent 3bd3e7a17c
commit 3fc87e7f87
2 changed files with 36 additions and 0 deletions

View File

@@ -508,6 +508,7 @@ CMSWindowsScreen::onPreDispatch(const CEvent* event)
// if the desktop was inaccessible then notify the
// event handler of that.
if (m_inaccessibleDesktop) {
LOG((CLOG_INFO "desktop is now accessible"));
m_inaccessibleDesktop = false;
m_eventHandler->onAccessibleDesktop();
}
@@ -515,6 +516,7 @@ CMSWindowsScreen::onPreDispatch(const CEvent* event)
else if (!m_inaccessibleDesktop) {
// the desktop has become inaccessible
m_inaccessibleDesktop = true;
LOG((CLOG_INFO "desktop is now inaccessible"));
}
}