From 8a7e0140eb0554e72128e8191771d77079afde16 Mon Sep 17 00:00:00 2001 From: ArvinLovegood Date: Tue, 25 Feb 2025 22:12:27 +0800 Subject: [PATCH] =?UTF-8?q?refactor(gui):=E8=B0=83=E6=95=B4=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E7=AA=97=E5=8F=A3=E5=AE=BD=E5=BA=A6=E6=AF=94=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将应用窗口宽度从屏幕宽度的2/3 调整为 4/5 - 此修改旨在优化用户界面布局,提供更好的视觉体验 --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index be0bdb9..1bee905 100644 --- a/main.go +++ b/main.go @@ -120,7 +120,7 @@ func main() { // Create application with options err = wails.Run(&options.App{ Title: "go-stock", - Width: width * 2 / 3, + Width: width * 4 / 5, Height: height * 2 / 3, MinWidth: 1024, MinHeight: 768,