Ubuntu Pastebin

Paste from micha at Mon, 14 Mar 2016 14:13:30 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
=== modified file 'qml/Dash/DashNavigationList.qml'
--- qml/Dash/DashNavigationList.qml	2016-03-03 10:12:20 +0000
+++ qml/Dash/DashNavigationList.qml	2016-03-14 14:13:24 +0000
@@ -16,6 +16,7 @@
 
 import QtQuick 2.4
 import Ubuntu.Components 1.3
+import Ubuntu.Components.ListItems 1.3 as ListItems
 import "../Components"
 
 Item {
@@ -52,7 +53,7 @@
             Repeater {
                 model: navigation && navigation.loaded ? navigation : null
                 clip: true
-                delegate: ListItem {
+                delegate: ListItems.Empty {
                     objectName: root.objectName + "child" + index
                     height: root.itemHeight
                     width: column.width
Download as text