summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/qml/MailListView.qml6
1 files changed, 1 insertions, 5 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml
index a9010881..c4bb66ae 100644
--- a/framework/qml/MailListView.qml
+++ b/framework/qml/MailListView.qml
@@ -70,10 +70,6 @@ FocusScope {
70 clip: true 70 clip: true
71 focus: true 71 focus: true
72 72
73 ScrollBar.vertical: Kube.ScrollBar{
74 id: scrollbar
75 }
76
77 //BEGIN keyboard nav 73 //BEGIN keyboard nav
78 onActiveFocusChanged: { 74 onActiveFocusChanged: {
79 if (activeFocus && currentIndex < 0) { 75 if (activeFocus && currentIndex < 0) {
@@ -109,7 +105,7 @@ FocusScope {
109 //Required for D&D 105 //Required for D&D
110 property var mail: model.mail 106 property var mail: model.mail
111 107
112 width: scrollbar.visible ? listView.width - scrollbar.width : listView.width 108 width: listView.width
113 height: Kube.Units.gridUnit * 5 109 height: Kube.Units.gridUnit * 5
114 110
115 color: Kube.Colors.viewBackgroundColor 111 color: Kube.Colors.viewBackgroundColor