[DEVELOPMENT ENVIRONMENT]

* NEW: The output console now uses overwrite editor mode, and always 
  displays its cursor.


git-svn-id: svn://localhost/gambas/trunk@7028 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2015-04-11 08:38:57 +00:00
parent 38c2a48fc7
commit 68b44320b8
2 changed files with 2 additions and 1 deletions

View file

@ -27,7 +27,6 @@ Component=gb.qt4.ext
Component=gb.qt4.webkit
Description="Integrated Development Environment for Gambas"
Authors="Benoît Minisini\nFabien Bodard\nCharlie Reinl\nJosé Luis Redrejo\nRobert Rowe\nTobias Boege"
Environment="GB_DB_DEBUG=1"
TabSize=2
Translate=1
Language=en

View file

@ -27,6 +27,8 @@ Public Sub _new()
edtOutput.Styles[Highlight.Keyword].Underline = True
edtOutput.Styles[Highlight.Keyword].Bold = False
edtOutput.Styles[Highlight.Keyword].Foreground = Color.Blue
edtOutput.Overwrite = True
edtOutput.Flags[Editor.AlwaysShowCursor] = True
End