Skip to content

Commit

Permalink
Increase click debounce to 700 millis
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarIlic committed Jan 16, 2024
1 parent 7aadb75 commit 48d11b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package net.primal.android.core.compose.foundation

class ClickDebounce(private val timeoutMillis: Long = 500L) {
class ClickDebounce(private val timeoutMillis: Long = 700L) {
private val now: Long get() = System.currentTimeMillis()

private var lastEventTimeInMillis: Long = 0
Expand Down

0 comments on commit 48d11b4

Please sign in to comment.