From 132b3996fcb4aa21328604a2d47e0c3c3a0e5796 Mon Sep 17 00:00:00 2001 From: darken Date: Mon, 8 Sep 2025 18:13:45 +0200 Subject: [PATCH] Update signal quality slider range The signal quality slider in `device_profile_creation_fragment.xml` now ranges from 0 to 100 with a step size of 1, previously 10 to 100 with a step size of 5. --- app/src/main/res/layout/device_profile_creation_fragment.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/layout/device_profile_creation_fragment.xml b/app/src/main/res/layout/device_profile_creation_fragment.xml index 76c664e4..66f391a3 100644 --- a/app/src/main/res/layout/device_profile_creation_fragment.xml +++ b/app/src/main/res/layout/device_profile_creation_fragment.xml @@ -190,9 +190,9 @@ android:id="@+id/signal_quality_slider" android:layout_width="match_parent" android:layout_height="wrap_content" - android:valueFrom="10" + android:valueFrom="0" android:valueTo="100" - android:stepSize="5" + android:stepSize="1" android:value="20" />