summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui/FolderListView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/package/contents/ui/FolderListView.qml')
-rw-r--r--components/package/contents/ui/FolderListView.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/package/contents/ui/FolderListView.qml b/components/package/contents/ui/FolderListView.qml
index b63235bb..d78531a2 100644
--- a/components/package/contents/ui/FolderListView.qml
+++ b/components/package/contents/ui/FolderListView.qml
@@ -23,7 +23,7 @@ import QtQuick.Layouts 1.1
23import org.kde.plasma.core 2.0 as PlasmaCore 23import org.kde.plasma.core 2.0 as PlasmaCore
24import org.kde.plasma.components 2.0 as PlasmaComponents 24import org.kde.plasma.components 2.0 as PlasmaComponents
25 25
26import org.kube.framework.domain 1.0 as Mail 26import org.kube.framework.domain 1.0 as KubeFramework
27 27
28Item { 28Item {
29 id: root 29 id: root
@@ -58,10 +58,10 @@ Item {
58 role: "name" 58 role: "name"
59 width: treeView.width - 5 59 width: treeView.width - 5
60 } 60 }
61 model: Mail.FolderListModel { id: folderListModel } 61 model: KubeFramework.FolderListModel { id: folderListModel }
62 onCurrentIndexChanged: { 62 onCurrentIndexChanged: {
63 model.fetchMore(currentIndex) 63 model.fetchMore(currentIndex)
64 root.currentFolder = model.data(currentIndex, Mail.FolderListModel.DomainObject) 64 root.currentFolder = model.data(currentIndex, KubeFramework.FolderListModel.DomainObject)
65 } 65 }
66 backgroundVisible: false 66 backgroundVisible: false
67 headerVisible: false 67 headerVisible: false