Update color

This commit is contained in:
rekols 2021-06-05 19:08:57 +08:00
parent 3322e1bd09
commit ff3f7a782c
2 changed files with 5 additions and 5 deletions

View file

@ -119,16 +119,16 @@ Item {
bottomMargin: desktopView.screenRect.height - (desktopView.screenAvailableRect.y + desktopView.screenAvailableRect.height) bottomMargin: desktopView.screenRect.height - (desktopView.screenAvailableRect.y + desktopView.screenAvailableRect.height)
Behavior on anchors.topMargin { Behavior on anchors.topMargin {
NumberAnimation { duration: 200; easing.type: Easing.Linear } NumberAnimation { duration: 125; easing.type: Easing.Linear }
} }
Behavior on leftMargin { Behavior on leftMargin {
NumberAnimation { duration: 200; easing.type: Easing.Linear } NumberAnimation { duration: 125; easing.type: Easing.Linear }
} }
Behavior on rightMargin { Behavior on rightMargin {
NumberAnimation { duration: 200; easing.type: Easing.Linear } NumberAnimation { duration: 125; easing.type: Easing.Linear }
} }
Behavior on bottomMargin { Behavior on bottomMargin {
NumberAnimation { duration: 200; easing.type: Easing.Linear } NumberAnimation { duration: 125; easing.type: Easing.Linear }
} }
flow: GridView.FlowTopToBottom flow: GridView.FlowTopToBottom

View file

@ -35,7 +35,7 @@ FishUI.Window {
title: qsTr("File Manager") title: qsTr("File Manager")
headerBarHeight: 35 + FishUI.Units.smallSpacing * 3 headerBarHeight: 35 + FishUI.Units.smallSpacing * 3
backgroundColor: FishUI.Theme.darkMode ? "#262626" : "#F2F2F7" backgroundColor: FishUI.Theme.darkMode ? "#262626" : "#F3F4F9"
property QtObject settings: GlobalSettings { } property QtObject settings: GlobalSettings { }