From bdd5c8766b8a9554c5023d5f28c88cc01c898e93 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Mon, 27 Oct 2025 10:30:26 +0100 Subject: [PATCH] Fixed missing bottom margin --- app/src/main/res/layout/settings_developer_fragment.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/src/main/res/layout/settings_developer_fragment.xml b/app/src/main/res/layout/settings_developer_fragment.xml index 1b3b3271a..b585f803d 100644 --- a/app/src/main/res/layout/settings_developer_fragment.xml +++ b/app/src/main/res/layout/settings_developer_fragment.xml @@ -297,11 +297,14 @@ android:layout_height="wrap_content" android:layout_marginStart="16dp" android:layout_marginEnd="10dp" + android:layout_marginBottom="@dimen/screen_bottom_margin" android:maxLines="3" android:text="@string/settings_developer_clear_native_friends_in_database_subtitle" + app:layout_constraintVertical_bias="0" app:layout_constraintTop_toBottomOf="@id/clear_friends_db_label" app:layout_constraintStart_toStartOf="parent" - app:layout_constraintEnd_toEndOf="parent"/> + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintBottom_toBottomOf="parent"/>