From 8334f884184d745d6f30cdcc4e43e77d8d1c62b2 Mon Sep 17 00:00:00 2001 From: miruka Date: Thu, 12 Sep 2019 20:54:25 -0400 Subject: [PATCH] Reduce mouse wheel speed in eventList --- TODO.md | 2 +- src/qml/Chat/Timeline/EventList.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TODO.md b/TODO.md index 43046755..2046c6ad 100644 --- a/TODO.md +++ b/TODO.md @@ -15,7 +15,6 @@ - Fixes - When selecting text and scrolling up, selection stops working after a while - Ensure all the text that should be copied is copied - - Mouse wheel scrolling speed in event list - Pressing backspace in composer sometimes doesn't work - Message order isn't preserved when sending a first message in a E2E @@ -36,6 +35,7 @@ - Show error if uploading avatar fails or file is corrupted - Way to open context menus without a right mouse button - Indeterminate progress bar + - `smartVerticalFlick()` gradual acceleration - Message selection - Copy to X11 selection diff --git a/src/qml/Chat/Timeline/EventList.qml b/src/qml/Chat/Timeline/EventList.qml index f6349ceb..ae3324fb 100644 --- a/src/qml/Chat/Timeline/EventList.qml +++ b/src/qml/Chat/Timeline/EventList.qml @@ -170,7 +170,7 @@ Rectangle { eventList, 200 * Qt.styleHints.wheelScrollLines * (wheel.angleDelta.y < 0 ? 1 : -1), - 3 + 2, ) } }