Версия 0.2.0 #2

Merged
kor-elf merged 7 commits from develop into main 2024-01-28 22:45:57 +06:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit 846986279c - Show all commits

BIN
src/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -19,6 +19,10 @@ import (
func main() {
a := app.New()
iconResource, err := fyne.LoadResourceFromPath("icon.png")
if err == nil {
a.SetIcon(iconResource)
}
w := a.NewWindow("GUI FFMpeg!")
w.Resize(fyne.Size{Width: 800, Height: 600})
w.CenterOnScreen()