diff options
| author | JosJuice <josjuice@gmail.com> | 2025-05-01 10:20:23 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2025-05-01 11:57:07 +0200 |
| commit | d64c20a67cc3f000dc81b3d2b36df99c7430d31b (patch) | |
| tree | e4a864212053bb93d096f1fead3b171114b2084a /Source/Android | |
| parent | 0ce929220d2d8d2e07b0038e1e73c957437a86d2 (diff) | |
Android: Fix incorrect ID in layout-ldrtl/list_item_mapping.xml
Probably a copy-paste error from layout-ldrtl/list_item_setting.xml.
This error made it so a long setting name could overlap with the
checkbox next to it if Dolphin was running with right-to-left layout.
The incorrect ID was apparently also causing the app:lintVitalRelease
build task to fail. I guess we're not running that build task, because I
only heard of this from someone building Dolphin locally.
Diffstat (limited to 'Source/Android')
| -rw-r--r-- | Source/Android/app/src/main/res/layout-ldrtl/list_item_mapping.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/res/layout-ldrtl/list_item_mapping.xml b/Source/Android/app/src/main/res/layout-ldrtl/list_item_mapping.xml index 709a7cbcf0..94f219b4c1 100644 --- a/Source/Android/app/src/main/res/layout-ldrtl/list_item_mapping.xml +++ b/Source/Android/app/src/main/res/layout-ldrtl/list_item_mapping.xml @@ -22,7 +22,7 @@ android:layout_marginTop="@dimen/spacing_large" android:textSize="16sp" android:textAlignment="viewStart" - android:layout_toStartOf="@+id/button_more_settings" + android:layout_toStartOf="@+id/button_advanced_settings" tools:text="Setting Name" /> <TextView |
