From c9f4707e093f91722eabd80060086647fe2abf89 Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Sun, 28 Apr 2024 22:09:45 +0800 Subject: [PATCH] set the width of the extension popup window --- scripts/GUI/entrypoints/ManagedWindow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/GUI/entrypoints/ManagedWindow.js b/scripts/GUI/entrypoints/ManagedWindow.js index 925670e..979f043 100644 --- a/scripts/GUI/entrypoints/ManagedWindow.js +++ b/scripts/GUI/entrypoints/ManagedWindow.js @@ -2,7 +2,7 @@ import Window from "/scripts/GUI/window.js"; export default class ManagedWindow { constructor () { - this.instance = new Window("/pages/popup.htm", {"width": "120", "height": "200", "type": "popup", "hidden": true}); + this.instance = new Window("/pages/popup.htm", {"width": "500", "height": "500", "type": "popup", "hidden": true}); } /*