refactor(gui):调整应用窗口宽度比例

- 将应用窗口宽度从屏幕宽度的2/3 调整为 4/5
- 此修改旨在优化用户界面布局,提供更好的视觉体验
This commit is contained in:
ArvinLovegood 2025-02-25 22:12:27 +08:00
parent 797a35eaa5
commit 8a7e0140eb

View File

@ -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,