Changeset 215 for trunk/plwm/wmanager.py
- Timestamp:
- 05/06/2008 05:09:12 PM (8 months ago)
- Files:
-
- 1 modified
-
trunk/plwm/wmanager.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plwm/wmanager.py
r214 r215 384 384 385 385 Window.__init__(self, screen, window) 386 387 # Let proxy register event handlers now that we have a dispatcher 388 if self.window_proxy_class is not None: 389 window.__proxy_event_init__(self) 390 386 391 self.window.change_save_set(X.SetModeInsert) 387 392 … … 1609 1614 """ 1610 1615 1611 #debug('verbose_event', 'handling %s', event)1616 debug('verbose_event', 'handling %s', event) 1612 1617 1613 1618 # Continuation of the error handling hack: check if this is a … … 1866 1871 1867 1872 1873 def __proxy_event_init__(self, client): 1874 # Client can now register event handlers 1875 self._client = client 1876 1877 1868 1878 def __getattr__(self, attr): 1869 1879 # Unknown attribute in the proxy, grab it from the real window instead
