From 738dcf86a6df5b2a440906e94be568f7af4bbcd1 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 23 Nov 2025 10:55:42 +0100 Subject: [PATCH] Android: Remove unnecessary gravity in dialog_login.xml Android Studio was complaining about these because their directions didn't match the text alignment, but in this layout they have no effect anyway. --- Source/Android/app/src/main/res/layout/dialog_login.xml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Android/app/src/main/res/layout/dialog_login.xml b/Source/Android/app/src/main/res/layout/dialog_login.xml index 608660817f3..22d11614b7d 100644 --- a/Source/Android/app/src/main/res/layout/dialog_login.xml +++ b/Source/Android/app/src/main/res/layout/dialog_login.xml @@ -57,7 +57,6 @@ android:id="@+id/login_in_progress" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_gravity="bottom" android:text="@string/achievements_login_in_progress" android:textAlignment="center" android:textColor="?attr/colorOnErrorContainer" @@ -73,7 +72,6 @@ android:id="@+id/login_failed" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_gravity="bottom" android:text="@string/achievements_login_failed" android:textAlignment="center" android:textColor="?attr/colorOnErrorContainer"