summaryrefslogtreecommitdiff
path: root/tui.go
diff options
context:
space:
mode:
Diffstat (limited to 'tui.go')
-rw-r--r--tui.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/tui.go b/tui.go
index c6ab392..9c81f7d 100644
--- a/tui.go
+++ b/tui.go
@@ -224,7 +224,7 @@ func showToast(title, message string) {
})
}
-func init() {
+func initTUI() {
// Start background goroutine to update model color cache
startModelColorUpdater()
tview.Styles = colorschemes["default"]
@@ -1173,4 +1173,5 @@ func init() {
}
return event
})
+ go updateModelLists()
}