summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.c b/src/state.c
index 9bac532..834aeca 100644
--- a/src/state.c
+++ b/src/state.c
@@ -46,7 +46,7 @@ static bool touching_finger(const struct FingerData* hw,
46 return hw->width_major > 0 && 46 return hw->width_major > 0 &&
47 hw->touch_major > FTW * hw->width_major; 47 hw->touch_major > FTW * hw->width_major;
48 if (caps->has_touch_major) 48 if (caps->has_touch_major)
49 hw->touch_major > FTS * caps->abs_touch_major.maximum; 49 return hw->touch_major > FTS * caps->abs_touch_major.maximum;
50 return 1; 50 return 1;
51} 51}
52 52