Commit 4312e167 authored by Mygod's avatar Mygod

Fix label

parent 3f93ad07
...@@ -233,7 +233,7 @@ class AppManager extends AppCompatActivity with OnCheckedChangeListener with OnC ...@@ -233,7 +233,7 @@ class AppManager extends AppCompatActivity with OnCheckedChangeListener with OnC
totalItemCount: Int) { totalItemCount: Int) {
if (visible) { if (visible) {
val name = apps(firstVisibleItem).name val name = apps(firstVisibleItem).name
overlay.setText(if (name != null && name.length > 1) name(0).toString else "*") overlay.setText(if (name != null && name.length > 1) name(0).toUpper.toString else "*")
overlay.setVisibility(View.VISIBLE) overlay.setVisibility(View.VISIBLE)
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment