From 5194b36177fb4e372c520435b505802a3d1a5371 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 29 Mar 2017 19:12:15 +0200 Subject: Added Icon theme --- components/package/contents/ui/FolderListView.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'components/package/contents') diff --git a/components/package/contents/ui/FolderListView.qml b/components/package/contents/ui/FolderListView.qml index 1a2f055c..c0b9c222 100644 --- a/components/package/contents/ui/FolderListView.qml +++ b/components/package/contents/ui/FolderListView.qml @@ -171,17 +171,17 @@ Rectangle { states: [ State { name: "busy"; when: model.status == KubeFramework.FolderListModel.InProgressStatus - PropertyChanges { target: statusIcon; iconName: "view-refresh"; visible: styleData.selected } + PropertyChanges { target: statusIcon; iconName: KubeTheme.Icons.busy ; visible: styleData.selected } }, State { name: "error"; when: model.status == KubeFramework.FolderListModel.ErrorStatus //The error status should only be visible for a moment, otherwise we'll eventually always show errors everywhere. - PropertyChanges { target: statusIcon; iconName: "emblem-error"; visible: styleData.selected } + PropertyChanges { target: statusIcon; iconName: KubeTheme.Icons.error; visible: styleData.selected } }, State { name: "checkmark"; when: model.status == KubeFramework.FolderListModel.SuccessStatus //The success status should only be visible for a moment, otherwise we'll eventually always show checkmarks everywhere. - PropertyChanges { target: statusIcon; iconName: "checkmark"; visible: styleData.selected } + PropertyChanges { target: statusIcon; iconName: KubeTheme.Icons.success; visible: styleData.selected } } ] } -- cgit v1.2.3