more cleanups after removing old window

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-06 15:07:30 -06:00
parent b8991ccf58
commit f89ba90467
1 changed files with 5 additions and 0 deletions

View File

@ -29,3 +29,8 @@ func sortLines(input string) string {
tmp = strings.TrimRight(tmp, "\n") tmp = strings.TrimRight(tmp, "\n")
return tmp return tmp
} }
func (ls *LinuxStatus) SetSpeedActual(s string) {
if ! ls.Ready() {return}
ls.speedActual.Set(s)
}