summary refs log tree commit diff stats
path: root/lib/ui/stack.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ui/stack.go')
-rw-r--r--lib/ui/stack.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ui/stack.go b/lib/ui/stack.go
index 2b97e78..2e3f0b9 100644
--- a/lib/ui/stack.go
+++ b/lib/ui/stack.go
@@ -7,7 +7,7 @@ import (
 )
 
 type Stack struct {
-	children []Drawable
+	children     []Drawable
 	onInvalidate []func(d Drawable)
 }
 
@@ -15,7 +15,7 @@ func NewStack() *Stack {
 	return &Stack{}
 }
 
-func (stack *Stack) OnInvalidate(onInvalidate func (d Drawable)) {
+func (stack *Stack) OnInvalidate(onInvalidate func(d Drawable)) {
 	stack.onInvalidate = append(stack.onInvalidate, onInvalidate)
 }