From db7355ef8e21dd403f6918c9b040e328ad2ad231 Mon Sep 17 00:00:00 2001 From: William Grant Date: Fri, 7 Jun 2024 19:20:57 +1000 Subject: [PATCH] fix: about window is now resizable --- ts/mains/main_node.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/mains/main_node.ts b/ts/mains/main_node.ts index 31932843b..2811e49a5 100644 --- a/ts/mains/main_node.ts +++ b/ts/mains/main_node.ts @@ -612,7 +612,7 @@ async function showAbout() { const options = { width: 500, height: 500, - resizable: false, + resizeable: true, title: locale.messages.about, autoHideMenuBar: true, backgroundColor: classicDark['--background-primary-color'],