Major changes
[quicknewsreader] / qml / QuickNewsReader / content / view / News.qml
index b6a7c1b..a7cf7f8 100644 (file)
@@ -8,8 +8,12 @@ Item {
         x: 0; y: 0
         id: list
         width: newsRect.width; height: window.height
-        model: currentJournal.newsModel
+        model: currentSource.listModels[componentDepth-1]
         delegate: NewsDelegate { }
+        highlight: Rectangle { color: "steelblue" }
+        highlightMoveDuration: 600
     }
     ScrollBar { scrollArea: list; height: list.height; width: 8; anchors.right: list.right }
+
+    Component.onCompleted: list.currentIndex = -1
 }