Merge branch 'i3bar-handle-negative'

next
Michael Stapelberg 2012-06-10 21:05:44 +02:00
commit 67c425ad97
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;
}
int32_t x = event->event_x;
int32_t x = event->event_x >= 0 ? event->event_x : 0;
DLOG("Got Button %d\n", event->detail);