fix: missing .show() call

This commit is contained in:
Ushie 2022-10-06 22:30:09 +03:00
parent 94e2f44131
commit de99f4c162
No known key found for this signature in database
GPG Key ID: 0EF73F1CA38B2D5F

View File

@ -32,7 +32,7 @@ fun FloatingActionButton(
icon = icon,
onClick = {
if (!enabled) {
Toast.makeText(context, "Please select an application.", Toast.LENGTH_SHORT)
Toast.makeText(context, "Please select an application.", Toast.LENGTH_SHORT).show()
}
if (enabled) onClick()
},