Some Updates

This commit is contained in:
2025-09-14 16:13:24 -05:00
parent 10bdd958d4
commit 592fffd601
6 changed files with 67 additions and 65 deletions

View File

@@ -183,7 +183,7 @@ func (w *Menu) drawHMenu(screen tcell.Screen) {
w.items[i].SetActive(w.active && w.cursor == i)
w.items[i].SetPos(Coord{X: x, Y: y})
w.items[i].Draw(screen)
x += w.items[i].WantW() + 2
x += len(w.items[i].Label()) + 2
}
}
}