Fix writeToConsole method

This method was adding given string to the console's list of lines, but wasn't displaying this given string.
User had to perform scroll to display this new string.
This commit is contained in:
Michał Czekański 2020-05-10 17:57:27 +02:00 committed by Marcin Kostrzewski
parent 86394ef71b
commit 2cebcd3be6

View File

@ -35,10 +35,10 @@ class UiConsole(UiElement):
# TODO: Should this method be static? We need to instantiate some console before we can write anything to it.
def writeToConsole(self, inp: str):
"""
Writes given string to console without scrolling to bottom.
Writes given string to console and scrolls (console) down to display it.
:param inp: String to be written to console.
"""
self.addLinesToConsole([inp])
self.addLinesToConsoleAndScrollToDisplayThem([inp])
def writeConsoleLines(self, startingLineInd=0):
self.image.fill(self.bgColor)