]> git.sur5r.net Git - i3/i3/commitdiff
When in tabbed mode, nail the orientation to horizontal
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 15 Nov 2010 12:55:10 +0000 (13:55 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 15 Nov 2010 12:55:10 +0000 (13:55 +0100)
This is intuitive for the user as he can use the left/right keys to switch.
Also, we need to nail the orientation because you can be in either vertical or
horizontal mode when you enter the tabbed layout (like with the stacking
layout).

src/con.c

index 2487dd830477d872b5e1519eb9a075b9ce9c17ee..4839526c761aa75c090e0580a6fc09443d599f1e 100644 (file)
--- a/src/con.c
+++ b/src/con.c
@@ -408,6 +408,9 @@ int con_orientation(Con *con) {
     if (con->layout == L_STACKED)
         return VERT;
 
+    if (con->layout == L_TABBED)
+        return HORIZ;
+
     return con->orientation;
 }