Fixed bug related to incorrect window size.

Sometimes when starting a program the program window was small.
This commit is contained in:
Leonid Nikitin 2024-03-16 21:45:14 +05:00
parent a95692196e
commit 7b7c15ad27
Signed by: kor-elf
GPG Key ID: 3C0F720C170F6E1D
1 changed files with 5 additions and 5 deletions

View File

@ -22,7 +22,8 @@ type Window struct {
}
func newWindow(w fyne.Window, layout LayoutContract) Window {
w.Resize(fyne.Size{Width: 1039, Height: 599})
windowSize := fyne.Size{Width: 1039, Height: 599}
w.Resize(windowSize)
w.CenterOnScreen()
go func() {
@ -30,11 +31,10 @@ func newWindow(w fyne.Window, layout LayoutContract) Window {
* Bug fixed.
* When starting the program, sometimes the window was displayed incorrectly.
*/
windowSize.Width += 1
windowSize.Height += 1
time.Sleep(time.Millisecond * 500)
size := w.Canvas().Size()
size.Width += 1
size.Height += 1
w.Resize(size)
w.Resize(windowSize)
}()
return Window{