Reduce mouse wheel speed in eventList

This commit is contained in:
miruka 2019-09-12 20:54:25 -04:00
parent f6b2c59fdc
commit 8334f88418
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -170,7 +170,7 @@ Rectangle {
eventList,
200 * Qt.styleHints.wheelScrollLines *
(wheel.angleDelta.y < 0 ? 1 : -1),
3
2,
)
}
}