aboutsummaryrefslogtreecommitdiff
path: root/include/input_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/input_state.h')
-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 {