VDBAbstractUnixConsoleApplication.st
changeset 88 b24e10b2eece
parent 51 6c982fc25fe2
child 94 e76206d071fc
--- a/VDBAbstractUnixConsoleApplication.st	Mon Jul 30 07:44:40 2018 +0100
+++ b/VDBAbstractUnixConsoleApplication.st	Mon Jul 30 08:41:56 2018 +0100
@@ -120,7 +120,8 @@
 consoleView
     consoleView isNil ifTrue:[ 
         consoleView :=VT100TerminalView new.
-        consoleView foregroundColor: Color white
+        consoleView cursorType: #block;  
+                    foregroundColor: Color white
                     backgroundColor: Color black;
                     cursorForegroundColor: Color white
                           backgroundColor: Color white.
@@ -133,7 +134,7 @@
     ^ consoleView
 
     "Created: / 06-06-2014 / 21:33:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 06-06-2017 / 13:57:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 30-07-2018 / 08:33:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !VDBAbstractUnixConsoleApplication methodsFor:'initialization & release'!