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