In archive allow scroll-down-by-pinned-drag.

This commit is contained in:
John Preston 2019-05-01 13:55:57 +04:00
parent 6102795856
commit 4dae89310d

View File

@ -1078,6 +1078,8 @@ bool InnerWidget::updateReorderPinned(QPoint localPosition) {
const auto delta = [&] {
if (localPosition.y() < _visibleTop) {
return localPosition.y() - _visibleTop;
} else if (_openedFolder && localPosition.y() > _visibleBottom) {
return localPosition.y() - _visibleBottom;
}
return 0;
}();