summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/kube/contents/ui/AccountsView.qml2
-rw-r--r--components/kube/contents/ui/ComposerView.qml2
-rw-r--r--components/kube/contents/ui/LogView.qml2
-rw-r--r--framework/qml/MailListView.qml3
4 files changed, 4 insertions, 5 deletions
diff --git a/components/kube/contents/ui/AccountsView.qml b/components/kube/contents/ui/AccountsView.qml
index 334549d9..011f77dc 100644
--- a/components/kube/contents/ui/AccountsView.qml
+++ b/components/kube/contents/ui/AccountsView.qml
@@ -49,7 +49,7 @@ Rectangle {
49 onClicked: accountWizard.open() 49 onClicked: accountWizard.open()
50 } 50 }
51 51
52 ListView { 52 Kube.ListView {
53 id: listView 53 id: listView
54 54
55 anchors { 55 anchors {
diff --git a/components/kube/contents/ui/ComposerView.qml b/components/kube/contents/ui/ComposerView.qml
index 80bb986f..7b3b3f41 100644
--- a/components/kube/contents/ui/ComposerView.qml
+++ b/components/kube/contents/ui/ComposerView.qml
@@ -107,7 +107,7 @@ Kube.View {
107 color: Kube.Colors.highlightedTextColor 107 color: Kube.Colors.highlightedTextColor
108 } 108 }
109 109
110 ListView { 110 Kube.ListView {
111 id: listView 111 id: listView
112 112
113 anchors { 113 anchors {
diff --git a/components/kube/contents/ui/LogView.qml b/components/kube/contents/ui/LogView.qml
index 2d7f9e7a..640921c3 100644
--- a/components/kube/contents/ui/LogView.qml
+++ b/components/kube/contents/ui/LogView.qml
@@ -36,7 +36,7 @@ Controls.SplitView {
36 } 36 }
37 } 37 }
38 38
39 ListView { 39 Kube.ListView {
40 id: listView 40 id: listView
41 anchors { 41 anchors {
42 margins: Kube.Units.largeSpacing 42 margins: Kube.Units.largeSpacing
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml
index e0befaf7..a6db1aba 100644
--- a/framework/qml/MailListView.qml
+++ b/framework/qml/MailListView.qml
@@ -63,13 +63,12 @@ FocusScope {
63 text: "Nothing here..." 63 text: "Nothing here..."
64 } 64 }
65 65
66 ListView { 66 Kube.ListView {
67 id: listView 67 id: listView
68 68
69 anchors.fill: parent 69 anchors.fill: parent
70 clip: true 70 clip: true
71 focus: true 71 focus: true
72 boundsBehavior: Flickable.StopAtBounds
73 72
74 ScrollBar.vertical: ScrollBar{ 73 ScrollBar.vertical: ScrollBar{
75 id: scrollbar 74 id: scrollbar