i3bar: handle clicks with negative coordinates (Thanks Julian)

This can happen if you move your mouse pointer to the very left of the
screen and then click. For better usability, we handle this edge case
like a click on pixel 0.
This commit is contained in:
Michael Stapelberg 2012-06-10 21:04:51 +02:00
parent 3587155c47
commit 599f7cc2a4
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ void handle_button(xcb_button_press_event_t *event) {
return; return;
} }
int32_t x = event->event_x; int32_t x = event->event_x >= 0 ? event->event_x : 0;
DLOG("Got Button %d\n", event->detail); DLOG("Got Button %d\n", event->detail);