aboutsummaryrefslogtreecommitdiff
path: root/go/ui/textBox.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/ui/textBox.go')
-rw-r--r--go/ui/textBox.go2
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
}