Bugfix: Make resizing work when pressing floating_modifier + right mouse button on window decorations

Fixes: #583
This commit is contained in:
Michael Stapelberg 2011-12-17 13:55:16 +00:00
parent 1c6de74d4f
commit 87b6bf7a54
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ static int route_click(Con *con, xcb_button_press_event_t *event, const bool mod
}
/* 7: floating modifier pressed, initiate a resize */
if (mod_pressed && event->detail == 3) {
if (dest == CLICK_INSIDE && mod_pressed && event->detail == 3) {
if (floating_mod_on_tiled_client(con, event))
return 1;
}