Fixed fmargin.

This commit is contained in:
KikooDX 2019-11-16 16:18:27 +01:00
parent 80cf133bbf
commit 5e5f1bc9ef
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class Screen:
if ask_for_input or fancy:
line = ""
if fancy:
for cell in self._mat[-1][:-1-fmargin]:
for cell in self._mat[-1][:-fmargin]:
line += cell
return input(line)
return input("> ")