Bugfix: assign BORDER_BOTTOM instead of BORDER_RIGHT (Thanks Jan)

next
Michael Stapelberg 2011-05-06 13:09:50 +02:00
parent 1fe5c58764
commit e73c171e0d
1 changed files with 1 additions and 1 deletions

View File

@ -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 };