From ff3f7a782cb7df2a2c9472a087fb8179b952d689 Mon Sep 17 00:00:00 2001 From: rekols Date: Sat, 5 Jun 2021 19:08:57 +0800 Subject: [PATCH] Update color --- qml/Desktop/main.qml | 8 ++++---- qml/main.qml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/qml/Desktop/main.qml b/qml/Desktop/main.qml index 4461b8f..5fed855 100644 --- a/qml/Desktop/main.qml +++ b/qml/Desktop/main.qml @@ -119,16 +119,16 @@ Item { bottomMargin: desktopView.screenRect.height - (desktopView.screenAvailableRect.y + desktopView.screenAvailableRect.height) Behavior on anchors.topMargin { - NumberAnimation { duration: 200; easing.type: Easing.Linear } + NumberAnimation { duration: 125; easing.type: Easing.Linear } } Behavior on leftMargin { - NumberAnimation { duration: 200; easing.type: Easing.Linear } + NumberAnimation { duration: 125; easing.type: Easing.Linear } } Behavior on rightMargin { - NumberAnimation { duration: 200; easing.type: Easing.Linear } + NumberAnimation { duration: 125; easing.type: Easing.Linear } } Behavior on bottomMargin { - NumberAnimation { duration: 200; easing.type: Easing.Linear } + NumberAnimation { duration: 125; easing.type: Easing.Linear } } flow: GridView.FlowTopToBottom diff --git a/qml/main.qml b/qml/main.qml index 41d4095..dc7d8a2 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -35,7 +35,7 @@ FishUI.Window { title: qsTr("File Manager") headerBarHeight: 35 + FishUI.Units.smallSpacing * 3 - backgroundColor: FishUI.Theme.darkMode ? "#262626" : "#F2F2F7" + backgroundColor: FishUI.Theme.darkMode ? "#262626" : "#F3F4F9" property QtObject settings: GlobalSettings { }