qml: do not use uncustomized ScrollView in BrowseHomeDisplay
- Certain implementations provide their own wheel handler, which does not respect our options. See KDE.
- We should not use an uncustomized control for such a marginal view since we have no control on how it would appear and behave.
- Using pure
Flickable
allows fine-grained control. Other option here could be adding a childFlickable
, but that is not necessary since the parent item is a focus scope anyway.