From 774342d868fc59a16c99d6f482b7db57e30b87f6 Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 14 Nov 2017 01:02:58 +0900 Subject: [PATCH] Fix bug --- src/web/app/desktop/tags/window.tag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/app/desktop/tags/window.tag b/src/web/app/desktop/tags/window.tag index f0e1a3fdd..7a82fe601 100644 --- a/src/web/app/desktop/tags/window.tag +++ b/src/web/app/desktop/tags/window.tag @@ -265,7 +265,7 @@ const position = this.refs.main.getBoundingClientRect(); const width = parseInt(getComputedStyle(this.refs.main, '').width, 10); - const left = parseInt(getComputedStyle(this.refs.main, '').left, 10); + const height = parseInt(getComputedStyle(this.refs.main, '').height, 10); const x = window.screenX + position.left; const y = window.screenY + position.top;