diff options
author | xengineering <me@xengineering.eu> | 2023-09-04 17:26:50 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-09-04 17:27:12 +0200 |
commit | bd92773ccd795dca6c0613bca3d1fb83b2f25a6d (patch) | |
tree | eb449c83bdda3f376bda6ee16019ea3e413bd3aa /limox.go | |
parent | 16d5f079cc51bffe9f07b356f3a42d5a09a45317 (diff) | |
download | limox-bd92773ccd795dca6c0613bca3d1fb83b2f25a6d.tar limox-bd92773ccd795dca6c0613bca3d1fb83b2f25a6d.tar.zst limox-bd92773ccd795dca6c0613bca3d1fb83b2f25a6d.zip |
Update to gioui.org v0.2.0
Diffstat (limited to 'limox.go')
-rw-r--r-- | limox.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -4,7 +4,6 @@ import ( "log" "gioui.org/app" - "gioui.org/font/gofont" "gioui.org/io/system" "gioui.org/op" "gioui.org/unit" @@ -41,7 +40,7 @@ func NewLimox() Limox { app.Size(unit.Dp(400), unit.Dp(600)), ), Operations: op.Ops{}, - Theme: material.NewTheme(gofont.Collection()), + Theme: material.NewTheme(), sessionOut: make(chan any), State: Disconnected, } |