diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2025-06-17 11:43:34 -0500 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-08-20 15:57:21 +0200 |
| commit | 4206d7fe5cf450fbc1f9a16e8d57b85c08df3dab (patch) | |
| tree | c0dd008bcb47fe6e7af49e5b79ba928ace002cc7 /go/client/startMenu.go | |
| parent | ab08e0b7c7ebc50549392e6de3908dfa61f1e973 (diff) | |
| download | muhqs-game-4206d7fe5cf450fbc1f9a16e8d57b85c08df3dab.tar.gz muhqs-game-4206d7fe5cf450fbc1f9a16e8d57b85c08df3dab.zip | |
make input events consumable
Having a input queue of consumable input events allow widgets to prevent
the further handling of the same event by different collections by
consuming the event.
Diffstat (limited to 'go/client/startMenu.go')
| -rw-r--r-- | go/client/startMenu.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/client/startMenu.go b/go/client/startMenu.go index 10b9e23d..c3377a40 100644 --- a/go/client/startMenu.go +++ b/go/client/startMenu.go @@ -151,7 +151,7 @@ func (m *startMenu) Update() error { m.sealed = nil } - if err := ui.TouchManager.Update(); err != nil { + if err := ui.Update(); err != nil { return err } |
