From e73c171e0d1f7800138314fb3112cf92e31fc3ae Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Fri, 6 May 2011 13:09:50 +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 85aaa6e7..2ac4afda 100644 --- a/src/floating.c +++ b/src/floating.c @@ -381,7 +381,7 @@ void floating_resize_window(Con *con, bool proportional, if (event->event_y <= (con->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