From 0344ca3f36fe130fd8f25a22236ef7e12af43d57 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Wed, 4 Mar 2009 21:56:27 +0100 Subject: [PATCH] =?UTF-8?q?Bugfix:=20Border=20presses=20weren=E2=80=99t=20?= =?UTF-8?q?correctly=20handled?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/handlers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers.c b/src/handlers.c index 07493f3e..22140e9e 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -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;