Skip to content

Commit

Permalink
SetClientPointer on every window in group
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyrisinger committed Apr 16, 2014
1 parent 01f5cc9 commit f61f96f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/xconsole/clients.py
Expand Up @@ -641,11 +641,11 @@ def _set_window_attributes(self):
).check()

def _set_client_pointer(self):
logger.info('_set_client_pointer: %s', self)
self.manager.conn.xinput.XISetClientPointerChecked(
self.window,
self.controller.keym[1],
).check()
for wid in self.atom.WID:
logger.info('_set_client_pointer: %s', self)
self.manager.conn.xinput.XISetClientPointerChecked(
wid, self.controller.keym[1],
).check()

def _set_barrier(self):
logger.info('_set_barrier: %s', self)
Expand Down

0 comments on commit f61f96f

Please sign in to comment.