diff -r bd0a7febf26d -r e76206d071fc VDBAbstractUnixConsoleApplication.st --- a/VDBAbstractUnixConsoleApplication.st Thu Aug 16 14:10:57 2018 +0100 +++ b/VDBAbstractUnixConsoleApplication.st Mon Aug 20 11:00:23 2018 +0100 @@ -120,7 +120,8 @@ consoleView consoleView isNil ifTrue:[ consoleView :=VT100TerminalView new. - consoleView cursorType: #block; + consoleView font: self textFont; + cursorType: #block; foregroundColor: Color white backgroundColor: Color black; cursorForegroundColor: Color white @@ -134,7 +135,7 @@ ^ consoleView "Created: / 06-06-2014 / 21:33:14 / Jan Vrany " - "Modified: / 30-07-2018 / 08:33:08 / Jan Vrany " + "Modified: / 20-08-2018 / 10:18:33 / Jan Vrany " ! ! !VDBAbstractUnixConsoleApplication methodsFor:'initialization & release'!