Added settings diplay and ability to change the keys (there is a refreshing problem though)

This commit is contained in:
eichhornchen
2020-11-11 14:46:25 +01:00
parent 56ba9d186e
commit d9b7db742a
2 changed files with 7 additions and 3 deletions

View File

@ -22,7 +22,7 @@ class MenuDisplay(Display):
def update_pad(self) -> None:
for i in range(self.trueheight):
self.pad.addstr(i, 0, " ")
self.pad.addstr(i, 0, " " + self.values[i])
# set a marker on the selected line
self.pad.addstr(self.menu.position, 0, ">")