diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2025-10-18 14:44:54 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-10-18 14:47:21 +0200 |
| commit | 03f09542930eb96a657a88e5b57bf47a95ac73da (patch) | |
| tree | 2b3de603b4ad25471da76dc04ce51a5e7f59f8c2 /go/ui/textBox.go | |
| parent | 848dceaef3578c874633611b81eae465c9255f52 (diff) | |
| download | muhqs-game-main.tar.gz muhqs-game-main.zip | |
Diffstat (limited to 'go/ui/textBox.go')
| -rw-r--r-- | go/ui/textBox.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/ui/textBox.go b/go/ui/textBox.go index 85580816..dd488c40 100644 --- a/go/ui/textBox.go +++ b/go/ui/textBox.go @@ -211,7 +211,7 @@ func NewNumberInput(x, y int, height, width int, number int) *NumberInput { ni := &NumberInput{ n: number, } - ni.InitTextInput(x, y, width, height, strconv.Itoa(number)) + ni.InitTextInput(x, y, width, height, strconv.Itoa(number), false) return ni } |
