Settings dialog infrastructure
[quicknewsreader] / qml / QuickNewsReader / content / view / News.qml
index 1e4f022..cc71822 100644 (file)
@@ -10,6 +10,9 @@ Item {
         width: newsRect.width; height: window.height
         model: currentSource.listModels[componentDepth-1]
         delegate: NewsDelegate { }
+        highlight: Rectangle { color: "steelblue" }
     }
     ScrollBar { scrollArea: list; height: list.height; width: 8; anchors.right: list.right }
+
+    Component.onCompleted: list.currentIndex = -1
 }