Skip to content

Commit f6d8d67

Browse files
committed
Lower number of clicks to dismiss CountdownCircle to 3.
1 parent c3ef0a2 commit f6d8d67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/edu/gatech/ccg/recordthesehands/recording/CountdownCircle.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fun CountdownCircle(
5656
detectTapGestures(
5757
onTap = {
5858
clickCount++
59-
if (clickCount >= 5) {
59+
if (clickCount >= 3) {
6060
onFinished()
6161
}
6262
}

0 commit comments

Comments
 (0)