Simplify scroll logic

pull/102/head
Nicolas Werner 5 years ago
parent 8c44c5e2d0
commit dee49508de
  1. 4
      resources/qml/TimelineView.qml

@ -58,10 +58,6 @@ Item {
onWheel: { onWheel: {
if (wheel.angleDelta != 0) { if (wheel.angleDelta != 0) {
chat.contentY = chat.contentY - wheel.angleDelta.y 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 wheel.accepted = true
chat.forceLayout() chat.forceLayout()
chat.updatePosition() chat.updatePosition()

Loading…
Cancel
Save