]> git.sur5r.net Git - i3/i3/blobdiff - src/move.c
Allow single-child non-default layout cons to be moved between outputs
[i3/i3] / src / move.c
index 1999a1fe901853d06924df49f5c026cc4f7977e2..e4da191a656752932b0c5fc420bbc12f6a7435ba 100644 (file)
@@ -249,6 +249,14 @@ void tree_move(Con *con, int direction) {
                         ? AFTER
                         : BEFORE);
         insert_con_into(con, target, position);
+    } else if (con->parent->parent->type == CT_WORKSPACE &&
+               con->parent->layout != L_DEFAULT &&
+               con_num_children(con->parent) == 1) {
+        /* Con is the lone child of a non-default layout container at the edge
+         * of the workspace. Treat it as though the workspace is its parent
+         * and move it to the next output. */
+        DLOG("Grandparent is workspace\n");
+        move_to_output_directed(con, direction);
     } else {
         DLOG("Moving into container above\n");
         position = (direction == D_UP || direction == D_LEFT ? BEFORE : AFTER);