Simplify scroll logic

This commit is contained in:
Nicolas Werner 2019-12-08 01:26:00 +01:00
parent 8c44c5e2d0
commit dee49508de
1 changed files with 0 additions and 4 deletions

View File

@ -58,10 +58,6 @@ Item {
onWheel: {
if (wheel.angleDelta != 0) {
chat.contentY = chat.contentY - wheel.angleDelta.y
if (wheel.angleDelta.y > 0 && chat.contentY > chat.contentHeight - chat.height)
chat.contentY = chat.contentHeight - chat.height
else if (wheel.angleDelta < 0 && chat.contentY < 0)
chat.contentY = 0
wheel.accepted = true
chat.forceLayout()
chat.updatePosition()