diff options
author | Kris Maglione <maglione.k@gmail.com> | 2008-12-16 11:30:28 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2008-12-16 11:33:23 -0500 |
commit | f1565ca5cea1599076fe173c302099ebd3680993 (patch) | |
tree | f8eac27bc8e00029a89d8e45f24d89a93245f476 /common/content/ui.js | |
parent | f1dd97212d2f5c7a2fcd83d0130dde88598ec6d7 (diff) | |
download | pentadactyl-f1565ca5cea1599076fe173c302099ebd3680993.tar.gz |
Hopefully fix quirks in last commit
Diffstat (limited to 'common/content/ui.js')
-rw-r--r-- | common/content/ui.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/common/content/ui.js b/common/content/ui.js index 960045cc..a2420b91 100644 --- a/common/content/ui.js +++ b/common/content/ui.js @@ -947,10 +947,8 @@ function CommandLine() //{{{ } if (!outputContainer.collapsed) { - setTimeout(function () { - modes.set(modes.COMMAND_LINE, modes.OUTPUT_MULTILINE); - commandline.updateMorePrompt(); - }, 0); + modes.set(modes.COMMAND_LINE, modes.OUTPUT_MULTILINE); + commandline.updateMorePrompt(); } keepCommand = false; }, |