From 0da5d3d35e28e44098571ce597c805ad9baa20c3 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 8 Jun 2017 16:13:53 +0900 Subject: [PATCH] Fix bug --- src/web/app/desktop/tags/home-widgets/activity.tag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/app/desktop/tags/home-widgets/activity.tag b/src/web/app/desktop/tags/home-widgets/activity.tag index b324e1ede..39878e91d 100644 --- a/src/web/app/desktop/tags/home-widgets/activity.tag +++ b/src/web/app/desktop/tags/home-widgets/activity.tag @@ -185,11 +185,11 @@ let moveLeft = me.clientX - clickX; let moveTop = me.clientY - clickY; - this.zoom = baseZoom + (moveTop / 20); + this.zoom = baseZoom + (-moveTop / 20); this.pos = basePos + moveLeft; if (this.zoom < 1) this.zoom = 1; if (this.pos > 0) this.pos = 0; - if (this.pos < -((this.data.length * this.zoom) - this.viewBoxX)) this.pos = -((this.data.length * this.zoom) - this.viewBoxX); + if (this.pos < -(((this.data.length - 1) * this.zoom) - this.viewBoxX)) this.pos = -(((this.data.length - 1) * this.zoom) - this.viewBoxX); this.render(); });