From 9e6723be41b4ad93cf60af445957ecfc729bece8 Mon Sep 17 00:00:00 2001 From: LucasGGamerM Date: Sat, 27 May 2023 13:00:54 -0300 Subject: [PATCH] fix: fixes wrong margin on Settings Button views This addresses a visual bug where a button item without an icon appears to be glued to the left side of the screen. This commit addresses that cc: @sk22 --- mastodon/src/main/res/layout/item_settings_button.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mastodon/src/main/res/layout/item_settings_button.xml b/mastodon/src/main/res/layout/item_settings_button.xml index 1c1a352d6..c79a17952 100644 --- a/mastodon/src/main/res/layout/item_settings_button.xml +++ b/mastodon/src/main/res/layout/item_settings_button.xml @@ -13,7 +13,7 @@ android:layout_width="24dp" android:layout_height="24dp" android:layout_marginStart="16dp" - android:layout_marginEnd="32dp" + android:layout_marginEnd="16dp" android:importantForAccessibility="no" android:tint="?android:textColorPrimary" tools:src="@drawable/ic_fluent_color_24_regular"/> @@ -23,6 +23,7 @@