Refactoring and model improvements
[quicknewsreader] / qml / QuickNewsReader / content / view / Categories.qml
index 04288ce..bca890e 100644 (file)
@@ -3,7 +3,7 @@ import QtQuick 1.0
 Rectangle {
 
     id: categoriesRect
-    width: 220
+    width: 220; height: window.height
     color: "#efefef"
 
     ListView {
@@ -11,11 +11,13 @@ Rectangle {
         id: categories
         x: 0; y: 0
         width: 220; height: window.height
-        model: currentJournal.categoriesModel
+        model: currentSource.listModels[componentDepth-1]
         footer: quitButtonDelegate
-        delegate: CategoryDelegate {}
+        delegate: CategoryDelegate { }
         highlight: Rectangle { color: "steelblue" }
         highlightMoveSpeed: 9999999
     }
     ScrollBar { scrollArea: categories; height: categories.height; width: 8; anchors.right: categories.right }
+
+    Component.onCompleted: categories.currentIndex = -1
 }