1 files changed, 0 insertions, 4 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index 238f21c7..1a1900ad 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -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()
|