fix floating focus behaviour, extend testcase
This commit is contained in:
19
src/con.c
19
src/con.c
@ -422,9 +422,24 @@ Con *con_next_focused(Con *con) {
|
||||
/* floating containers are attached to a workspace, so we focus either the
|
||||
* next floating container (if any) or the workspace itself. */
|
||||
if (con->type == CT_FLOATING_CON) {
|
||||
DLOG("selecting next for CT_FLOATING_CON\n");
|
||||
next = TAILQ_NEXT(con, floating_windows);
|
||||
if (next == TAILQ_END(&(parent->floating_head)))
|
||||
next = con_get_workspace(con);
|
||||
if (next == TAILQ_END(&(parent->floating_head))) {
|
||||
Con *ws = con_get_workspace(con);
|
||||
next = ws;
|
||||
DLOG("no more floating containers for next = %p, restoring workspace focus\n", next);
|
||||
while (next != TAILQ_END(&(ws->focus_head)) && !TAILQ_EMPTY(&(next->focus_head))) {
|
||||
next = TAILQ_FIRST(&(next->focus_head));
|
||||
if (next == con) {
|
||||
DLOG("skipping container itself, we want the next client\n");
|
||||
next = TAILQ_NEXT(next, focused);
|
||||
}
|
||||
}
|
||||
if (next == TAILQ_END(&(ws->focus_head))) {
|
||||
DLOG("Focus list empty, returning NULL\n");
|
||||
next = NULL;
|
||||
}
|
||||
}
|
||||
return next;
|
||||
}
|
||||
|
||||
|
@ -78,6 +78,8 @@ void floating_enable(Con *con, bool automatic) {
|
||||
|
||||
TAILQ_INSERT_TAIL(&(nc->nodes_head), con, nodes);
|
||||
TAILQ_INSERT_TAIL(&(nc->focus_head), con, focused);
|
||||
// TODO: don’t influence focus handling when Con was not focused before.
|
||||
con_focus(con);
|
||||
}
|
||||
|
||||
void floating_disable(Con *con, bool automatic) {
|
||||
@ -105,6 +107,8 @@ void floating_disable(Con *con, bool automatic) {
|
||||
con->floating = FLOATING_USER_OFF;
|
||||
|
||||
con_fix_percent(con->parent, WINDOW_ADD);
|
||||
// TODO: don’t influence focus handling when Con was not focused before.
|
||||
con_focus(con);
|
||||
}
|
||||
|
||||
|
||||
|
2
src/x.c
2
src/x.c
@ -372,7 +372,7 @@ static void x_push_node(Con *con) {
|
||||
state = state_for_frame(con->frame);
|
||||
|
||||
if (state->name != NULL) {
|
||||
DLOG("pushing name %s\n", state->name);
|
||||
DLOG("pushing name %s for con %p\n", state->name, con);
|
||||
|
||||
xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->frame,
|
||||
WM_NAME, STRING, 8, strlen(state->name), state->name);
|
||||
|
Reference in New Issue
Block a user