mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-12-19 17:57:49 -05:00
Android: Replace dialog_login.xml's invisible with gone
LoginDialog sets these to gone when a login starts or fails. Whether we use gone or invisible needs to be consistent between LoginDialog and the XML file, otherwise we'll blank space that shows up or disappears when login starts or fails.
This commit is contained in:
@@ -61,7 +61,7 @@
|
||||
android:text="@string/achievements_login_in_progress"
|
||||
android:textAlignment="center"
|
||||
android:textColor="?attr/colorOnErrorContainer"
|
||||
android:visibility="invisible"
|
||||
android:visibility="gone"
|
||||
android:clickable="false"
|
||||
android:focusable="false"
|
||||
app:layout_constraintBottom_toTopOf="@id/login_failed"
|
||||
@@ -77,7 +77,7 @@
|
||||
android:text="@string/achievements_login_failed"
|
||||
android:textAlignment="center"
|
||||
android:textColor="?attr/colorOnErrorContainer"
|
||||
android:visibility="invisible"
|
||||
android:visibility="gone"
|
||||
android:clickable="false"
|
||||
android:focusable="false"
|
||||
app:layout_constraintBottom_toTopOf="@id/button_cancel"
|
||||
|
||||
Reference in New Issue
Block a user