Skip to content

Commit

Permalink
forgot
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartixxx32 committed Jan 9, 2025
1 parent 2220fff commit 060c7ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class MainActivity : BaseActivity() {
} else {
// Optionally, you can show feedback for each click if desired
Handler(Looper.getMainLooper()).postDelayed({
if (clickCount < 3) {
if (clickCount < 5) {
clickCount = 0
}
}, 5000)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class MainActivity2 : BaseActivity() {
} else {
// Optionally, you can show feedback for each click if desired
Handler(Looper.getMainLooper()).postDelayed({
if (clickCount < 3) {
if (clickCount < 5) {
clickCount = 0
}
}, 5000)
Expand Down

0 comments on commit 060c7ca

Please sign in to comment.