Merge pull request #2169 from Airblader/bug-2168

Don't grab the buttons on the root window.
This commit is contained in:
Michael Stapelberg 2016-01-20 13:43:20 -08:00
commit f9a47c2611
1 changed files with 0 additions and 4 deletions

View File

@ -164,10 +164,6 @@ void regrab_all_buttons(xcb_connection_t *conn) {
xcb_grab_buttons(conn, con->window->id, grab_scrollwheel); xcb_grab_buttons(conn, con->window->id, grab_scrollwheel);
} }
/* Also grab the root window to allow bindings to work on there as well. */
xcb_ungrab_button(conn, XCB_BUTTON_INDEX_ANY, root, XCB_BUTTON_MASK_ANY);
xcb_grab_buttons(conn, root, grab_scrollwheel);
xcb_ungrab_server(conn); xcb_ungrab_server(conn);
} }