summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-07-16 08:31:00 -0700
committerLibravatar GitHub <noreply@github.com>2018-07-16 08:31:00 -0700
commit6a9ca6efa057999df3ce047887bd009700c3dc1b (patch)
treec380b85e10b4008218c43238e06abce8a296b8df /include
parentMerge pull request #2282 from RyanDwyer/fix-tab-split-focus (diff)
parentFocus view before running criteria when mapping (diff)
downloadsway-6a9ca6efa057999df3ce047887bd009700c3dc1b.tar.gz
sway-6a9ca6efa057999df3ce047887bd009700c3dc1b.tar.zst
sway-6a9ca6efa057999df3ce047887bd009700c3dc1b.zip
Merge pull request #2283 from RyanDwyer/no-focus
Implement no_focus command
Diffstat (limited to 'include')
-rw-r--r--include/sway/criteria.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/sway/criteria.h b/include/sway/criteria.h
index bd3ca0ac..6a8337c5 100644
--- a/include/sway/criteria.h
+++ b/include/sway/criteria.h
@@ -6,9 +6,10 @@
6#include "tree/view.h" 6#include "tree/view.h"
7 7
8enum criteria_type { 8enum criteria_type {
9 CT_COMMAND = 1 << 0, 9 CT_COMMAND = 1 << 0,
10 CT_ASSIGN_OUTPUT = 1 << 1, 10 CT_ASSIGN_OUTPUT = 1 << 1,
11 CT_ASSIGN_WORKSPACE = 1 << 2, 11 CT_ASSIGN_WORKSPACE = 1 << 2,
12 CT_NO_FOCUS = 1 << 3,
12}; 13};
13 14
14struct criteria { 15struct criteria {