diff --git a/copyparty/__version__.py b/copyparty/__version__.py index dcc608e5..1036d3d9 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -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) diff --git a/copyparty/web/md2.js b/copyparty/web/md2.js index 6b74c85c..bac56ad2 100644 --- a/copyparty/web/md2.js +++ b/copyparty/web/md2.js @@ -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; }