X-Git-Url: http://git.maemo.org/git/?p=quicknewsreader;a=blobdiff_plain;f=qml%2FQuickNewsReader%2Fcontent%2Fview%2FCategories.qml;h=bca890e60a23bc35bb017bd1aedda491c6756309;hp=04288cef282ad9a55a0b4b1ca187d54cd688a853;hb=d01d157c4f2340a8e52a891209159d1ad0b0f6cc;hpb=fba8f6f66f7884da548bc9da7adc103777c25e07 diff --git a/qml/QuickNewsReader/content/view/Categories.qml b/qml/QuickNewsReader/content/view/Categories.qml index 04288ce..bca890e 100644 --- a/qml/QuickNewsReader/content/view/Categories.qml +++ b/qml/QuickNewsReader/content/view/Categories.qml @@ -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 }