From ef3e241b78e9ed856d01608c24a223b82132403c Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Fri, 6 May 2011 13:10:27 +0200 Subject: [PATCH] Bugfix: Assign BORDER_BOTTOM instead of BORDER_RIGHT (Thanks Jan) --- src/floating.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/floating.c b/src/floating.c index 7b9d3ffe..ef5ccbbd 100644 --- a/src/floating.c +++ b/src/floating.c @@ -360,7 +360,7 @@ void floating_resize_window(xcb_connection_t *conn, Client *client, if (event->event_y <= (client->rect.height / 2)) corner |= BORDER_TOP; - else corner |= BORDER_RIGHT; + else corner |= BORDER_BOTTOM; struct resize_window_callback_params params = { corner, proportional, event }; -- 2.39.5