diff --git a/common/content/ui.js b/common/content/ui.js index b044ae81..35d3b2e6 100644 --- a/common/content/ui.js +++ b/common/content/ui.js @@ -1017,8 +1017,10 @@ function CommandLine() //{{{ // completion preview. return commandWidget.inputField.editor.rootElement.firstChild.textContent; } - catch (e) {} - return commandWidget.value; + catch (e) + { + return commandWidget.value; + } }, set command(cmd) commandWidget.value = cmd,