mirror of
https://github.com/ArvinLovegood/go-stock.git
synced 2025-07-19 00:00:09 +08:00
refactor(gui):调整应用窗口宽度比例
- 将应用窗口宽度从屏幕宽度的2/3 调整为 4/5 - 此修改旨在优化用户界面布局,提供更好的视觉体验
This commit is contained in:
parent
797a35eaa5
commit
8a7e0140eb
2
main.go
2
main.go
@ -120,7 +120,7 @@ func main() {
|
|||||||
// Create application with options
|
// Create application with options
|
||||||
err = wails.Run(&options.App{
|
err = wails.Run(&options.App{
|
||||||
Title: "go-stock",
|
Title: "go-stock",
|
||||||
Width: width * 2 / 3,
|
Width: width * 4 / 5,
|
||||||
Height: height * 2 / 3,
|
Height: height * 2 / 3,
|
||||||
MinWidth: 1024,
|
MinWidth: 1024,
|
||||||
MinHeight: 768,
|
MinHeight: 768,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user