Skip to content

Commit

Permalink
Bug Fix:
Browse files Browse the repository at this point in the history
Removed unneeded, 200ms, delay when opening applications through the launcher. This makes the launcher respond quicker to user input.
  • Loading branch information
JesusC0der committed May 7, 2024
1 parent a4f3d1a commit ea837fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/src/main/java/com/agronick/launcher/MainView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class MainView(context: Context, appList: List<PInfo>) : View(context) {
postDelayed({
onPackageClick?.let { it1 -> it1(app.pkgInfo) }
openingApp = null
}, 200)
}, 0) // removed delay - unneeded - used to equal 200ms
}
start()
}
Expand Down

0 comments on commit ea837fb

Please sign in to comment.