Fixed blinking text

This commit is contained in:
M66B
2021-03-21 19:41:11 +01:00
parent 04cc751aa5
commit 4f9b2a17bc
2 changed files with 8 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ public class ViewTextDelayed extends AppCompatTextView {
this.visibility = visibility;
if (visibility == VISIBLE) {
if (delaying)
if (delaying || super.getVisibility() == VISIBLE)
return;
delaying = true;
super.setVisibility(INVISIBLE);