From 2c8efebe98bd7ce62f6a55c963aa6ea6241ccd6f Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Wed, 26 Jun 2019 20:03:19 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=B1=D0=B0=D0=B3=20=D0=BA=D0=BB=D0=B8=D0=BA?= =?UTF-8?q?=D0=B0=20=D0=B2=20=D1=81=D1=82=D0=B0=D1=82=D1=83=D1=81=20=D0=B1?= =?UTF-8?q?=D0=B0=D1=80=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/components/Reader/TextPage/TextPage.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/components/Reader/TextPage/TextPage.vue b/client/components/Reader/TextPage/TextPage.vue index 7f30365c..1527b170 100644 --- a/client/components/Reader/TextPage/TextPage.vue +++ b/client/components/Reader/TextPage/TextPage.vue @@ -174,7 +174,6 @@ class TextPage extends Vue { this.$refs.statusBar.style.top = (this.statusBarTop ? 1 : this.realHeight - this.statusBarHeight) + 'px'; this.statusBarColor = this.hex2rgba(this.textColor || '#000000', this.statusBarColorAlpha); - this.statusBarClickable = this.drawHelper.statusBarClickable(this.statusBarTop, this.statusBarHeight); //drawHelper this.drawHelper.realWidth = this.realWidth; @@ -201,6 +200,9 @@ class TextPage extends Vue { this.drawHelper.lineHeight = this.lineHeight; this.drawHelper.context = this.context; + //statusBar + this.statusBarClickable = this.drawHelper.statusBarClickable(this.statusBarTop, this.statusBarHeight); + //parsed if (this.parsed) { this.parsed.p = this.p;