summaryrefslogtreecommitdiff
path: root/include/sway/container.h
diff options
context:
space:
mode:
authorwil <[email protected]>2016-12-29 20:26:35 +0100
committerwil <[email protected]>2016-12-29 20:31:30 +0100
commita0aa8d9780c6c8b0138800e3b2c2c0053174a2c5 (patch)
treec82dec85d4f5c9dbe0b93131f56614bccaa3a227 /include/sway/container.h
parent2b0e3c212a6c269b68879ba6c2d84ebedd5938e1 (diff)
cleanup in auto layouts
- added L_AUTO_FIRST/LAST instead of using explicit layouts. - when switching between auto layout that don't share the same major axis, invert the width/height of their child views to preserve their relative proportions.
Diffstat (limited to 'include/sway/container.h')
-rw-r--r--include/sway/container.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/container.h b/include/sway/container.h
index 1d0fb265..f0574b1b 100644
--- a/include/sway/container.h
+++ b/include/sway/container.h
@@ -44,6 +44,9 @@ enum swayc_layouts {
L_AUTO_TOP,
L_AUTO_BOTTOM,
+ L_AUTO_FIRST = L_AUTO_LEFT,
+ L_AUTO_LAST = L_AUTO_BOTTOM,
+
// Keep last
L_LAYOUTS,
};