This commit is contained in:
ed 2021-06-25 22:23:21 +02:00
parent 45827a2458
commit aae8e0171e
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (0, 11, 26)
VERSION = (0, 11, 27)
CODENAME = "the grid"
BUILD_DT = (2021, 6, 25)

View File

@ -875,7 +875,7 @@ function playpause(e) {
if (!is_touch)
bar.onwheel = function (e) {
var dist = Math.sign(e.deltaY) * 15;
var dist = Math.sign(e.deltaY) * 10;
if (Math.abs(e.deltaY) < 30 && !e.deltaMode)
dist = e.deltaY;