This commit is contained in:
ed 2020-11-13 03:31:07 +01:00
parent 69d3359e47
commit 755a2ee023
2 changed files with 3 additions and 3 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (0, 5, 2)
VERSION = (0, 5, 3)
CODENAME = "fuse jelly"
BUILD_DT = (2020, 8, 18)
BUILD_DT = (2020, 11, 13)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -170,7 +170,7 @@ redraw = (function () {
dst.scrollTop = 0;
return;
}
if (y + 8 + src.clientHeight > src.scrollHeight) {
if (y + 48 + src.clientHeight > src.scrollHeight) {
dst.scrollTop = dst.scrollHeight - dst.clientHeight;
return;
}