about summary refs log tree commit diff stats
path: root/lib/ui/stack.go
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-06-11 20:04:21 -0400
committerDrew DeVault <sir@cmpwn.com>2018-06-11 20:04:21 -0400
commit6728a11fdf863f7a33eb14e84421b828ab28c09f (patch)
treec9e1dcb85e34273b3f166f50a84e608aafe4e502 /lib/ui/stack.go
parentd67c8a60ef9a326ba7e2ff0b5755d8eba629d4eb (diff)
downloadaerc-6728a11fdf863f7a33eb14e84421b828ab28c09f.tar.gz
Apply gofmt
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)
 }
 
href='#n147'>147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181