summaryrefslogtreecommitdiffstats
path: root/framework/qml/ScrollHelper.qml
Commit message (Collapse)AuthorAge
* Removed unnecessary importChristian Mollekopf2017-12-27
|
* Improved mouse wheel scrolling.Christian Mollekopf2017-09-06
| | | | | Scrolling with a mouse (instead of a trackpad) was too slow. This improves that.
* FixupsChristian Mollekopf2017-07-15
|
* Use a ScrollHelper to fix scrolling on listviewsChristian Mollekopf2017-07-15
Because the standard scrolling is so unusable depending on the input device we replace it by something custom that is fairly similar to what QQC1 ScrollView did. Using a ScrollView sucks in many ways, including that you have to wrap all sorts of things which is just code wise not great at all. The ScrollHelper can instead be attached to any existing flickable to override it's scrolling behaviour, so we can also silently drop it once the default flickable behaviour starts to make sense.