From 668a470276386a5a2ea1c27eb7fd00f2ac6c2779 Mon Sep 17 00:00:00 2001 From: muwoo <2424880409@qq.com> Date: Fri, 21 Apr 2023 13:52:00 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20=E4=BF=AE=E5=A4=8D=E6=8F=92=E4=BB=B6?= =?UTF-8?q?=E7=AA=97=E5=8F=A3=E6=89=93=E5=BC=80=E5=B0=BA=E5=AF=B8=E5=81=8F?= =?UTF-8?q?=E5=B0=8F=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/main/browsers/runner.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a6825bb..03cd3f5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rubick", - "version": "2.2.3", + "version": "2.2.4", "author": "muwoo <2424880409@qq.com>", "private": true, "scripts": { diff --git a/src/main/browsers/runner.ts b/src/main/browsers/runner.ts index 7cd9e22..55cc63f 100644 --- a/src/main/browsers/runner.ts +++ b/src/main/browsers/runner.ts @@ -80,7 +80,7 @@ export default () => { view.webContents.once('dom-ready', () => { const height = pluginSetting && pluginSetting.height; window.setSize(800, height || 660); - view.setBounds({ x: 0, y: 60, width: 800, height: height || 660 }); + view.setBounds({ x: 0, y: 60, width: 800, height: height || 600 }); view.setAutoResize({ width: true }); executeHooks('PluginEnter', plugin.ext); executeHooks('PluginReady', plugin.ext);