From kde-commits Sat Oct 31 23:46:38 2015 From: Aleix Pol Date: Sat, 31 Oct 2015 23:46:38 +0000 To: kde-commits Subject: [kalgebra] mobile/plugins/widgets/material: Make the SimpleListView delegate non-interactive Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=144633521200944 Git commit 0b73a66b174c8f6099463cca2384c49a2eea997a by Aleix Pol. Committed on 31/10/2015 at 23:42. Pushed by apol into branch 'master'. Make the SimpleListView delegate non-interactive M +4 -1 mobile/plugins/widgets/material/SimpleListView.qml http://commits.kde.org/kalgebra/0b73a66b174c8f6099463cca2384c49a2eea997a diff --git a/mobile/plugins/widgets/material/SimpleListView.qml b/mobile/pl= ugins/widgets/material/SimpleListView.qml index 8c4bb03..5205501 100644 --- a/mobile/plugins/widgets/material/SimpleListView.qml +++ b/mobile/plugins/widgets/material/SimpleListView.qml @@ -11,7 +11,10 @@ ListView header: ListItem.Subheader { text: ListView.view.title } - delegate: ListItem.Standard { text: model[role] } + delegate: ListItem.Standard { + text: model[role] + interactive: false + } = Scrollbar { flickableItem: viewItem