From: Michael Stapelberg Date: Fri, 6 May 2011 11:10:27 +0000 (+0200) Subject: Bugfix: Assign BORDER_BOTTOM instead of BORDER_RIGHT (Thanks Jan) X-Git-Tag: 3.e-bf3~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ef3e241b78e9ed856d01608c24a223b82132403c;p=i3%2Fi3 Bugfix: Assign BORDER_BOTTOM instead of BORDER_RIGHT (Thanks Jan) --- 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 };