This commit is contained in:
Lea Anthony
2020-09-29 20:36:38 +10:00
parent b8bb891275
commit 84730d2f4d
3 changed files with 0 additions and 3 deletions

View File

@@ -63,7 +63,6 @@ func CreateApp(options *Options) *App {
MinHeight: options.MinHeight,
MaxWidth: options.MaxWidth,
MaxHeight: options.MaxHeight,
Frameless: options.Frameless,
StartHidden: options.StartHidden,
// This should be controlled by the compile time flags...

View File

@@ -14,7 +14,6 @@ type App struct {
Height int
DisableResize bool
Fullscreen bool
Frameless bool
MinWidth int
MinHeight int
MaxWidth int

View File

@@ -13,7 +13,6 @@ func main() {
Width: 1024,
Height: 768,
StartHidden: true,
Frameless: true,
})
app.Bind(newBasic())