summaryrefslogtreecommitdiffstats
path: root/pkg/gui/view_helpers.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-08-19 18:41:57 +1000
committerJesse Duffield <jessedduffield@gmail.com>2020-08-23 14:29:18 +1000
commit2f5d5034dbe4523c44faa58ba6f30c2fef06c128 (patch)
treebce2590230ef9bc560da11f376c4187c9db0067a /pkg/gui/view_helpers.go
parenta32947e7a777cb1f1bc16ea9693bd3d01519ea4b (diff)
good progress
Diffstat (limited to 'pkg/gui/view_helpers.go')
-rw-r--r--pkg/gui/view_helpers.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/view_helpers.go b/pkg/gui/view_helpers.go
index 3d5353ea9..db5e32848 100644
--- a/pkg/gui/view_helpers.go
+++ b/pkg/gui/view_helpers.go
@@ -86,9 +86,9 @@ func (gui *Gui) refreshSidePanels(options refreshOptions) error {
wg.Add(1)
func() {
if options.mode == ASYNC {
- go gui.refreshStashEntries(gui.g)
+ go gui.refreshStashEntries()
} else {
- gui.refreshStashEntries(gui.g)
+ gui.refreshStashEntries()
}
wg.Done()
}()