dont bother making a copy of the event to change its type
Dana Jansens danakj@orodu.net
1 files changed,
3 insertions(+),
3 deletions(-)
jump to
M
src/actions.cc
→
src/actions.cc
@@ -95,9 +95,9 @@ Because of how events are grabbed on the client window, we can't get
ButtonRelease events, so instead we simply manufacture them here, so that clicks/doubleclicks etc still work. */ - XButtonEvent ev = e; - ev.type = ButtonRelease; - buttonReleaseHandler(ev); + //XButtonEvent ev = e; + //ev.type = ButtonRelease; + buttonReleaseHandler(e); } }