aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-09-04 11:00:12 -0400
committerLibravatar GitHub <noreply@github.com>2018-09-04 11:00:12 -0400
commit309fcf23007a7c1b5c1c6da6b5ff7101312488cc (patch)
tree9e581c403ef8b99df78bddb7e54be856ada4514e /include
parentMerge pull request #2561 from RyanDwyer/window-role-criteria (diff)
parentDeny repeating reload by holding key (diff)
downloadsway-309fcf23007a7c1b5c1c6da6b5ff7101312488cc.tar.gz
sway-309fcf23007a7c1b5c1c6da6b5ff7101312488cc.tar.zst
sway-309fcf23007a7c1b5c1c6da6b5ff7101312488cc.zip
Merge pull request #2569 from RyanDwyer/deny-reload-repeat
Deny repeating reload by holding key
Diffstat (limited to 'include')
-rw-r--r--include/sway/config.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 4ee8c3c2..6024f0f6 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -31,10 +31,11 @@ enum binding_input_type {
31 31
32enum binding_flags { 32enum binding_flags {
33 BINDING_RELEASE=1, 33 BINDING_RELEASE=1,
34 BINDING_LOCKED=2, // keyboard only 34 BINDING_LOCKED=2, // keyboard only
35 BINDING_BORDER=4, // mouse only; trigger on container border 35 BINDING_BORDER=4, // mouse only; trigger on container border
36 BINDING_CONTENTS=8, // mouse only; trigger on container contents 36 BINDING_CONTENTS=8, // mouse only; trigger on container contents
37 BINDING_TITLEBAR=16 // mouse only; trigger on container titlebar 37 BINDING_TITLEBAR=16, // mouse only; trigger on container titlebar
38 BINDING_RELOAD=32, // the binding runs the reload command
38}; 39};
39 40
40/** 41/**