Bugfix: Border presses weren’t correctly handled
This commit is contained in:
parent
03e48b8bfe
commit
0344ca3f36
|
@ -206,7 +206,7 @@ int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_
|
||||||
first = con;
|
first = con;
|
||||||
second = con->workspace->table[con->col][con->row+1];
|
second = con->workspace->table[con->col][con->row+1];
|
||||||
orientation = O_HORIZONTAL;
|
orientation = O_HORIZONTAL;
|
||||||
} else if (event->event_x < 2) {
|
} else if (event->event_x <= 2) {
|
||||||
/* …left border */
|
/* …left border */
|
||||||
if (con->col == 0)
|
if (con->col == 0)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in New Issue