Skip to content
Snippets Groups Projects
Verified Commit 56b9c951 authored by meskio's avatar meskio :tent:
Browse files

[style] clean up wait loop

parent ad81ddbf
No related branches found
No related tags found
No related merge requests found
......@@ -141,15 +141,15 @@ func (bt *bmTray) changeStatus(status string) {
}
func (bt *bmTray) waitIcon() {
i := 0
icons := [][]byte{icon.Wait0, icon.Wait1, icon.Wait2, icon.Wait3}
for {
for i := 0; true; i = (i + 1) % 4 {
systray.SetIcon(icons[i])
select {
case <-bt.waitCh:
return
case <-time.After(time.Millisecond * 500):
i = (i + 1) % 4
continue
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment