aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authortaiyu <taiyu.len@gmail.com>2015-08-23 07:59:18 -0700
committertaiyu <taiyu.len@gmail.com>2015-08-23 07:59:18 -0700
commitd72cc925416847adaf2636cea0773ef6d9a46461 (patch)
treea1c882aca8348ae0558872759df2e8e01f49be62 /include
parent299406a048e8db3342987a9cfb2ce8b61df6bd82 (diff)
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 {
enum pointer_mode {
// Target
- M_FLOATING = 1 << 0,
- M_TILING = 1 << 1,
+ M_FLOATING = 1,
+ M_TILING = 2,
// Action
- M_DRAGGING = 1 << 2,
- M_RESIZING = 1 << 3,
+ M_DRAGGING = 4,
+ M_RESIZING = 8,
};
struct pointer_button_state {