diff options
| author | Drew DeVault <sir@cmpwn.com> | 2018-09-04 11:00:12 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-04 11:00:12 -0400 | 
| commit | 309fcf23007a7c1b5c1c6da6b5ff7101312488cc (patch) | |
| tree | 9e581c403ef8b99df78bddb7e54be856ada4514e /include | |
| parent | 6dd3e0caf574ab9c328025489d3ea605fcdd7fc8 (diff) | |
| parent | 7797490e9e285589f501e46202df36b6bf8afcfd (diff) | |
| download | sway-309fcf23007a7c1b5c1c6da6b5ff7101312488cc.tar.xz | |
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.h | 9 | 
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 {  enum binding_flags {  	BINDING_RELEASE=1, -	BINDING_LOCKED=2, // keyboard only -	BINDING_BORDER=4, // mouse only; trigger on container border -	BINDING_CONTENTS=8, // mouse only; trigger on container contents -	BINDING_TITLEBAR=16 // mouse only; trigger on container titlebar +	BINDING_LOCKED=2,    // keyboard only +	BINDING_BORDER=4,    // mouse only; trigger on container border +	BINDING_CONTENTS=8,  // mouse only; trigger on container contents +	BINDING_TITLEBAR=16, // mouse only; trigger on container titlebar +	BINDING_RELOAD=32,   // the binding runs the reload command  };  /**  | 
