Bugfix: Border presses weren’t correctly handled

next
Michael Stapelberg 2009-03-04 21:56:27 +01:00
parent 03e48b8bfe
commit 0344ca3f36
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_
first = con;
second = con->workspace->table[con->col][con->row+1];
orientation = O_HORIZONTAL;
} else if (event->event_x < 2) {
} else if (event->event_x <= 2) {
/* …left border */
if (con->col == 0)
return 1;