From b5604e62797fa0019a800154c79072d42b4e4cb1 Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Fri, 13 Apr 2018 09:45:24 -0700 Subject: [PATCH] Cleanup widget initialization --- main.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 3372f0d..2e308e3 100644 --- a/main.go +++ b/main.go @@ -23,9 +23,7 @@ var ( helpToggled = make(chan bool, 1) helpVisible = false - // proc widget takes longer to load, wait to render until it loads data - widgetsLoaded = make(chan bool, 1) - wg sync.WaitGroup + wg sync.WaitGroup // used to render the proc widget whenever a key is pressed for it keyPressed = make(chan bool, 1) // used to render cpu and mem when zoom has changed @@ -191,6 +189,7 @@ func widgetColors() { } } +// load widgets asynchronously but wait till they are all finished func initWidgets() { wg.Add(widgetCount)