In some scenarios, the new line does not work if is not called thru the write function

This commit is contained in:
Erwin Ried 2020-08-08 23:08:54 +02:00
parent fcbb26051b
commit 871be0199a

View File

@ -625,7 +625,8 @@ void Console::write(std::string message) {
void Console::writeln(std::string message) {
write(message);
crlf();
write("\n");
//crlf();
}
void Console::paint(Painter&) {