mirror of https://github.com/ImVexed/muon.git
commit
ebcf7be95c
|
@ -15,7 +15,7 @@ func main() {
|
||||||
Title: "Hello, World!",
|
Title: "Hello, World!",
|
||||||
Height: 500,
|
Height: 500,
|
||||||
Width: 500,
|
Width: 500,
|
||||||
Tilted: true,
|
Titled: true,
|
||||||
Resizeable: true,
|
Resizeable: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
6
muon.go
6
muon.go
|
@ -37,7 +37,7 @@ type Config struct {
|
||||||
|
|
||||||
Resizeable bool
|
Resizeable bool
|
||||||
Borderless bool
|
Borderless bool
|
||||||
Tilted bool
|
Titled bool
|
||||||
Maximizable bool
|
Maximizable bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,8 +64,10 @@ func New(cfg *Config, handler http.Handler) *Window {
|
||||||
hint |= 1
|
hint |= 1
|
||||||
}
|
}
|
||||||
|
|
||||||
if cfg.Tilted {
|
if cfg.Titled {
|
||||||
hint |= 2
|
hint |= 2
|
||||||
|
} else {
|
||||||
|
w.cfg.Title = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
if cfg.Maximizable {
|
if cfg.Maximizable {
|
||||||
|
|
Loading…
Reference in New Issue