From e6d25134826d9307553f3188481c799442c51614 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E5=AD=90=E6=A5=9A?= Date: Sat, 11 Mar 2023 21:03:16 +0800 Subject: [PATCH] update --- src/controls/FluNavigationView.qml | 8 ++++---- src/controls/FluSlider.qml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/controls/FluNavigationView.qml b/src/controls/FluNavigationView.qml index a8d4daa..fdc6b1e 100644 --- a/src/controls/FluNavigationView.qml +++ b/src/controls/FluNavigationView.qml @@ -105,11 +105,11 @@ Item { } color: { if(FluTheme.isDark){ - if((nav_list.currentIndex === position)&&type===0){ - return "#2D2D2D" - } if(item_mouse.containsMouse){ - return "#292929" + return Qt.rgba(1,1,1,0.03) + } + if((nav_list.currentIndex === position)&&type===0){ + return Qt.rgba(1,1,1,0.06) } return Qt.rgba(0,0,0,0) }else{ diff --git a/src/controls/FluSlider.qml b/src/controls/FluSlider.qml index cd9f732..3768203 100644 --- a/src/controls/FluSlider.qml +++ b/src/controls/FluSlider.qml @@ -8,7 +8,7 @@ Item{ property int lineSize: 5 property int size: 180 - property int dotSize: 26 + property int dotSize: 28 property int value: 50