aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar taiyu <taiyu.len@gmail.com>2015-08-23 07:59:18 -0700
committerLibravatar taiyu <taiyu.len@gmail.com>2015-08-23 07:59:18 -0700
commitd72cc925416847adaf2636cea0773ef6d9a46461 (patch)
treea1c882aca8348ae0558872759df2e8e01f49be62 /include
parentslight fix (diff)
downloadsway-d72cc925416847adaf2636cea0773ef6d9a46461.tar.gz
sway-d72cc925416847adaf2636cea0773ef6d9a46461.tar.zst
sway-d72cc925416847adaf2636cea0773ef6d9a46461.zip
style
Diffstat (limited to 'include')
-rw-r--r--include/input_state.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/input_state.h b/include/input_state.h
index 747a3563..4ab93cd6 100644
--- a/include/input_state.h
+++ b/include/input_state.h
@@ -30,11 +30,11 @@ enum pointer_values {
30 30
31enum pointer_mode { 31enum pointer_mode {
32 // Target 32 // Target
33 M_FLOATING = 1 << 0, 33 M_FLOATING = 1,
34 M_TILING = 1 << 1, 34 M_TILING = 2,
35 // Action 35 // Action
36 M_DRAGGING = 1 << 2, 36 M_DRAGGING = 4,
37 M_RESIZING = 1 << 3, 37 M_RESIZING = 8,
38}; 38};
39 39
40struct pointer_button_state { 40struct pointer_button_state {