Do not resend focus on click

Do not set focused_id to XCB_NONE in route click to force resend focus,
in some cases to an already focused window.

Sending focus again on click is not necessary and may cause problems
with certain wine or mono apps. Resending focus makes combo boxes not
work in Office 2010.

This effectively reverts commit 250577da, so in case this commit causes
any problems with Eclipse to resurface, we’ll revert this commit in
favor of 250577da (the Eclipse-related bug fix).
This commit is contained in:
Tony Crisci
2014-09-20 17:21:08 -04:00
committed by Michael Stapelberg
parent 2fecf57699
commit 8870edc2ca
2 changed files with 3 additions and 4 deletions

View File

@ -214,7 +214,6 @@ static int route_click(Con *con, xcb_button_press_event_t *event, const bool mod
if (ws != focused_workspace)
workspace_show(ws);
focused_id = XCB_NONE;
/* get the floating con */
Con *floatingcon = con_inside_floating(con);