Server now disables jump zones when scroll lock is active.

This commit is contained in:
crs
2004-03-06 16:20:08 +00:00
parent 5593573182
commit a27c6ad2c6
2 changed files with 22 additions and 13 deletions

View File

@@ -1344,7 +1344,8 @@ CXWindowsScreen::doSelectEvents(Window w) const
// select events of interest. do this before querying the tree so
// we'll get notifications of children created after the XQueryTree()
// so we won't miss them.
XSelectInput(m_display, w, PointerMotionMask | SubstructureNotifyMask);
XSelectInput(m_display, w, KeyPressMask | KeyReleaseMask |
PointerMotionMask | SubstructureNotifyMask);
// recurse on child windows
Window rw, pw, *cw;