]> git.sur5r.net Git - i3/i3/commitdiff
Correctly count the number of windows for no_focus. (#2296)
authorIngo Bürk <admin@airblader.de>
Fri, 15 Apr 2016 07:26:42 +0000 (09:26 +0200)
committerMichael Stapelberg <stapelberg@users.noreply.github.com>
Fri, 15 Apr 2016 07:26:42 +0000 (00:26 -0700)
Previously we counted the number of (direct) children of the workspace to
decide whether no_focus should be applied or not. However, this doesn't
work correctly if there's a single container with multiple windows on the
workspace.

This patch correctly counts all windows on the workspace.

fixes #2292

include/con.h
src/con.c
src/manage.c

index 130dd83b250643f4a90a9ebff83f71a5ed5488fa..7fa7facfa6feb67cab1f076da7f2bee2c16975ed 100644 (file)
@@ -200,6 +200,12 @@ Con *con_for_window(Con *con, i3Window *window, Match **store_match);
  */
 int con_num_children(Con *con);
 
+/**
+ * Count the number of windows (i.e., leaf containers).
+ *
+ */
+int con_num_windows(Con *con);
+
 /**
  * Attaches the given container to the given parent. This happens when moving
  * a container or when inserting a new container at a specific place in the
index 17cdd2d6c42c71ab83d47eab2c6bf0fcb2c600f9..1ab4a8411b0c5a9d2921c4559d1f3974d4806a64 100644 (file)
--- a/src/con.c
+++ b/src/con.c
@@ -727,6 +727,26 @@ int con_num_children(Con *con) {
     return children;
 }
 
+/*
+ * Count the number of windows (i.e., leaf containers).
+ *
+ */
+int con_num_windows(Con *con) {
+    if (con == NULL)
+        return 0;
+
+    if (con_has_managed_window(con))
+        return 1;
+
+    int num = 0;
+    Con *current = NULL;
+    TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
+        num += con_num_windows(current);
+    }
+
+    return num;
+}
+
 /*
  * Updates the percent attribute of the children of the given container. This
  * function needs to be called when a window is added or removed from a
index f86e98f5564d656bdb49b646472c383325fd6aea..f868c85d4a9796c4edd8cd6d112dbf536ad8bed1 100644 (file)
@@ -577,7 +577,7 @@ void manage_window(xcb_window_t window, xcb_get_window_attributes_cookie_t cooki
         /* The first window on a workspace should always be focused. We have to
          * compare with == 1 because the container has already been inserted at
          * this point. */
-        if (con_num_children(ws) == 1) {
+        if (con_num_windows(ws) == 1) {
             DLOG("This is the first window on this workspace, ignoring no_focus.\n");
         } else {
             DLOG("no_focus was set for con = %p, not setting focus.\n", nc);