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:
a0333b5
)
dont bother making a copy of the event to change its type
author
Dana Jansens
<danakj@orodu.net>
Fri, 10 Jan 2003 19:31:44 +0000
(19:31 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Fri, 10 Jan 2003 19:31:44 +0000
(19:31 +0000)
src/actions.cc
patch
|
blob
|
history
diff --git
a/src/actions.cc
b/src/actions.cc
index 309323cca6281c323e027a2bd093e7d066b27597..15a3e6c2667f0b9c88cd5a700f3d6fd9619c9709 100644
(file)
--- a/
src/actions.cc
+++ b/
src/actions.cc
@@
-95,9
+95,9
@@
void OBActions::buttonPressHandler(const XButtonEvent &e)
ButtonRelease events, so instead we simply manufacture them here, so that
clicks/doubleclicks etc still work.
*/
- XButtonEvent ev = e;
- ev.type = ButtonRelease;
- buttonReleaseHandler(e
v
);
+
//
XButtonEvent ev = e;
+
//
ev.type = ButtonRelease;
+ buttonReleaseHandler(e);
}
}