From: Michael Stapelberg Date: Fri, 6 May 2011 11:09:50 +0000 (+0200) Subject: Bugfix: assign BORDER_BOTTOM instead of BORDER_RIGHT (Thanks Jan) X-Git-Tag: tree-pr3~49 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e73c171e0d1f7800138314fb3112cf92e31fc3ae;p=i3%2Fi3 Bugfix: assign BORDER_BOTTOM instead of BORDER_RIGHT (Thanks Jan) --- 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 };