projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01a6d81
)
call the window's processEvent() directly instead of the screen's, since it didn...
author
Dana Jansens
<danakj@orodu.net>
Sat, 7 Sep 2002 07:28:36 +0000
(07:28 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Sat, 7 Sep 2002 07:28:36 +0000
(07:28 +0000)
util/epist/screen.cc
patch
|
blob
|
history
diff --git
a/util/epist/screen.cc
b/util/epist/screen.cc
index 1705202bc319ad82f36df47b4b1cb653a73da11a..0220a9499ef7ec34676d77784686b9a89e5730d0 100644
(file)
--- a/
util/epist/screen.cc
+++ b/
util/epist/screen.cc
@@
-149,7
+149,9
@@
void screen::processEvent(const XEvent &e) {
DestroyNotify, &ev) ||
XCheckTypedWindowEvent(_epist->getXDisplay(), e.xany.window,
UnmapNotify, &ev)) {
- processEvent(ev);
+
+ XWindow *win = _epist->findWindow(e.xany.window);
+ if (win) win->processEvent(ev);
}
updateClientList();