[GB.FORM.TERMINAL]

* BUG: Remove translator for TAB and SP


git-svn-id: svn://localhost/gambas/trunk@7697 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Fabien Bodard 2016-03-30 22:21:26 +00:00
parent 82b52bdf3b
commit 55b4ee5794
2 changed files with 5 additions and 5 deletions

View File

@ -426,10 +426,10 @@ Public Sub InputTo(hView As TerminalView, hProcess As Process, iCode As Integer,
Case Key.Left
sText = If(hScreen.AppCursorKey, "\eOD", "\e[D")
Case Key.Space
sText = If(hScreen.AppCursorKey, "\eO ", " ")
Case Key.Tab
sText = If(hScreen.AppCursorKey, "\eO ", Key.Text)
' Case Key.Space
' sText = If(hScreen.AppCursorKey, "\eO ", " ")
' Case Key.Tab
' sText = If(hScreen.AppCursorKey, "\eOI", Key.Text)
Case Key.Enter
sText = If(hScreen.AppCursorKey, "\eOM", Key.Text)
Case Key.Insert

View File

@ -913,7 +913,7 @@ Public Sub DebugRefresh()
Inc GetView()._DisableFilter
Wait
Dec GetView()._DisableFilter
Stop
'Stop
Endif
End