fix console rescale issue

This commit is contained in:
alu
2026-08-07 10:59:36 -07:00
parent 31c409a94c
commit 691dba7687
8 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ import (
)
func (proc *Proc) RenderProc(console *strings.Builder) {
fmt.Fprintf(console, "=== %s ===\n", proc.Model())
fmt.Fprintf(console, "=== %s ===\033[K\n", proc.Model())
for _, driver := range proc.drivers {
driver.Render(console)
}