summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar wil <william.barsse@gmail.com>2017-01-01 19:53:53 +0100
committerLibravatar wil <william.barsse@gmail.com>2017-01-01 19:53:53 +0100
commita62048f15d9381e3040bd45965233e59a041eab7 (patch)
tree52e898bed50efcefe3d526db696d16f8888bc2f0 /include
parent[fix] cycle auto layouts backwards (diff)
downloadsway-a62048f15d9381e3040bd45965233e59a041eab7.tar.gz
sway-a62048f15d9381e3040bd45965233e59a041eab7.tar.zst
sway-a62048f15d9381e3040bd45965233e59a041eab7.zip
changed "layout promote" command to "move first"
This is more consistent with other Sway semantics.
Diffstat (limited to 'include')
-rw-r--r--include/sway/focus.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sway/focus.h b/include/sway/focus.h
index 30c9e108..652cdccc 100644
--- a/include/sway/focus.h
+++ b/include/sway/focus.h
@@ -8,7 +8,8 @@ enum movement_direction {
8 MOVE_PARENT, 8 MOVE_PARENT,
9 MOVE_CHILD, 9 MOVE_CHILD,
10 MOVE_NEXT, 10 MOVE_NEXT,
11 MOVE_PREV 11 MOVE_PREV,
12 MOVE_FIRST
12}; 13};
13 14
14#include "container.h" 15#include "container.h"