Skip to content

Commit a1fe125

Browse files
wjyrichdeepin-bot[bot]
authored andcommitted
fix: update theme with installed dot.
as title. Logs:
1 parent faddfed commit a1fe125

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

qml/windowed/AppListView.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,9 @@ FocusScope {
249249
width: 10
250250
height: 10
251251
radius: 5
252-
color: ApplicationHelper.DarkType === ApplicationHelper.LightType ? "#1C0560" : "#669DFF"
252+
color: DTK.themeType === ApplicationHelper.LightType ? "#1C0560" : "#669DFF"
253253
border.width: 1
254-
border.color: ApplicationHelper.DarkType === ApplicationHelper.LightType ?
254+
border.color: DTK.themeType === ApplicationHelper.LightType ?
255255
Qt.rgba(0, 0, 0, 0.1) : Qt.rgba(1, 1, 1, 0.1)
256256
visible: model.lastLaunchedTime === 0 && model.installedTime !== 0
257257
anchors {

qml/windowed/FreeSortListView.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,9 +269,9 @@ Item {
269269
width: 10
270270
height: 10
271271
radius: 5
272-
color: ApplicationHelper.DarkType === ApplicationHelper.LightType ? "#1C0560" : "#669DFF"
272+
color: DTK.themeType === ApplicationHelper.LightType ? "#1C0560" : "#669DFF"
273273
border.width: 1
274-
border.color: ApplicationHelper.DarkType === ApplicationHelper.LightType ?
274+
border.color: DTK.themeType === ApplicationHelper.LightType ?
275275
Qt.rgba(0, 0, 0, 0.1) : Qt.rgba(1, 1, 1, 0.1)
276276
visible: model.lastLaunchedTime === 0 && model.installedTime !== 0
277277
anchors {

0 commit comments

Comments
 (0)