Real fix for the white rectangle on the startup screen.

This commit is contained in:
Zukero
2018-11-24 22:18:24 +01:00
parent 9a3085ee7d
commit 239851b03d

View File

@@ -111,7 +111,9 @@ public final class StartScreenActivity extends FragmentActivity implements OnNew
ui_visible = !ui_visible;
int visibility = ui_visible ? View.VISIBLE : View.GONE;
if (tv != null) tv.setVisibility(visibility);
if (development_version != null) development_version.setVisibility(visibility);
if (!AndorsTrailApplication.IS_RELEASE_VERSION) {
if (development_version != null) development_version.setVisibility(visibility);
}
if (currentFragment != null) {
if (ui_visible) {