VDBAbstractUnixConsoleApplication.st
changeset 94 e76206d071fc
parent 88 b24e10b2eece
child 139 c619cc458fb1
--- 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 <jan.vrany@fit.cvut.cz>"
-    "Modified: / 30-07-2018 / 08:33:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 20-08-2018 / 10:18:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !VDBAbstractUnixConsoleApplication methodsFor:'initialization & release'!