From 3aab1a93ba3b6980d979846e8550faedf5a2fc83 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Mon, 9 Apr 2018 23:37:42 +0200 Subject: [PATCH] [vue.auth.dialog] updated dialog 'frequency' canvas now it take the whole height --- parcel/vue/auth/dialog.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parcel/vue/auth/dialog.vue b/parcel/vue/auth/dialog.vue index 10e86af..95a6cc2 100644 --- a/parcel/vue/auth/dialog.vue +++ b/parcel/vue/auth/dialog.vue @@ -150,8 +150,8 @@ export default { ctx.beginPath(); ctx.strokeStyle = '#44484f'; - ctx.moveTo(i, can.height-128); - ctx.lineTo(i, can.height-128-buffer[i]/2); + ctx.moveTo(i, can.height); + ctx.lineTo(i, can.height-buffer[i]); ctx.stroke();