Merge pull request #1512 from mdtipton/unclutter_scroll

Fix scrolling in window decoration with hidden cursor.
This commit is contained in:
Michael Stapelberg 2015-03-13 00:46:16 -07:00
commit fea21f8945
1 changed files with 5 additions and 5 deletions

View File

@ -380,11 +380,6 @@ int handle_button_press(xcb_button_press_event_t *event) {
return 0; return 0;
} }
if (event->child != XCB_NONE) {
DLOG("event->child not XCB_NONE, so this is an event which originated from a click into the application, but the application did not handle it.\n");
return route_click(con, event, mod_pressed, CLICK_INSIDE);
}
/* Check if the click was on the decoration of a child */ /* Check if the click was on the decoration of a child */
Con *child; Con *child;
TAILQ_FOREACH(child, &(con->nodes_head), nodes) { TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
@ -394,5 +389,10 @@ int handle_button_press(xcb_button_press_event_t *event) {
return route_click(child, event, mod_pressed, CLICK_DECORATION); return route_click(child, event, mod_pressed, CLICK_DECORATION);
} }
if (event->child != XCB_NONE) {
DLOG("event->child not XCB_NONE, so this is an event which originated from a click into the application, but the application did not handle it.\n");
return route_click(con, event, mod_pressed, CLICK_INSIDE);
}
return route_click(con, event, mod_pressed, CLICK_BORDER); return route_click(con, event, mod_pressed, CLICK_BORDER);
} }