refactor:调整最小高度以适应16:9的宽高比

- 将 MinHeight 从 768 修改为 800
- 保持 MinWidth 为 1456,与修改后的 MinHeight 形成 16:9 的宽高比
This commit is contained in:
ArvinLovegood 2025-03-24 10:33:01 +08:00
parent d467adbdec
commit 9d546fd214

View File

@ -135,7 +135,7 @@ func main() {
//Width: width * 4 / 5,
//Height: height * 4 / 5,
MinWidth: 1456,
MinHeight: 768,
MinHeight: 800,
//MaxWidth: width,
//MaxHeight: height,
DisableResize: false,