diff --git a/src/click.c b/src/click.c index f501c769..5c36aeb0 100644 --- a/src/click.c +++ b/src/click.c @@ -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); diff --git a/src/x.c b/src/x.c index ff0a2295..ae97ef0d 100644 --- a/src/x.c +++ b/src/x.c @@ -15,9 +15,9 @@ /* Stores the X11 window ID of the currently focused window */ xcb_window_t focused_id = XCB_NONE; -/* Because 'focused_id' might be reset to force input focus (after click to - * raise), we separately keep track of the X11 window ID to be able to always - * tell whether the focused window actually changed. */ +/* Because 'focused_id' might be reset to force input focus, we separately keep + * track of the X11 window ID to be able to always tell whether the focused + * window actually changed. */ static xcb_window_t last_focused = XCB_NONE; /* Stores coordinates to warp mouse pointer to if set */