Skip to content

Commit

Permalink
Merge branch 'master' into v0.94
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Apr 16, 2011
2 parents 65c2399 + 159995b commit 6df52c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Expand Up @@ -11,7 +11,7 @@
border: none;
outline: none;
word-wrap: break-word;
white-space: pre-wrap;
white-space: pre-wrap !important;
cursor: text;
}
.console td {
Expand All @@ -21,7 +21,7 @@
.output {
outline: none;
border: none;
white-space: pre-wrap;
white-space: pre-wrap !important;
margin: 0;
}
.output .command, .input {
Expand Down
Expand Up @@ -56,6 +56,11 @@ private boolean onTextInput(String text)
{
if (text == null)
return false;

// Escape key comes in as a character on desktop builds
if (text.equals("\u001B"))
return true;

for (int i = 0; i < text.length(); i++)
if (completionManager_.previewKeyPress(text.charAt(i)))
return true;
Expand Down

0 comments on commit 6df52c0

Please sign in to comment.