From d9e24286d2e8254cc9e96cdd5ee2aba549a3dd00 Mon Sep 17 00:00:00 2001 From: neverland Date: Fri, 18 Sep 2020 21:53:50 +0800 Subject: [PATCH] fix(Swipe): can't disable loop in some cases (#7208) --- src/swipe/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/swipe/index.js b/src/swipe/index.js index 608289690..fd18fdeff 100644 --- a/src/swipe/index.js +++ b/src/swipe/index.js @@ -167,8 +167,8 @@ export default createComponent({ this.rect = rect; this.swiping = true; this.active = active; - this.computedWidth = Math.round(+this.width || rect.width); - this.computedHeight = Math.round(+this.height || rect.height); + this.computedWidth = Math.floor(+this.width || rect.width); + this.computedHeight = Math.floor(+this.height || rect.height); this.offset = this.getTargetOffset(active); this.children.forEach((swipe) => { swipe.offset = 0;