From 4d998743c4f6429f9837eeb5c968bd043a0264ed Mon Sep 17 00:00:00 2001 From: Dmitry Trofimov Date: Thu, 7 Apr 2011 18:32:59 +0400 Subject: [PATCH] Python console improvements: command invocation timelimit removed, added possibility to interrupt previous command by Ctrl+C (PY-3084). --- .../execution/runners/AbstractConsoleRunnerWithHistory.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platform/lang-impl/src/com/intellij/execution/runners/AbstractConsoleRunnerWithHistory.java b/platform/lang-impl/src/com/intellij/execution/runners/AbstractConsoleRunnerWithHistory.java index 09c30e60cc33..fa7477da6cb0 100644 --- a/platform/lang-impl/src/com/intellij/execution/runners/AbstractConsoleRunnerWithHistory.java +++ b/platform/lang-impl/src/com/intellij/execution/runners/AbstractConsoleRunnerWithHistory.java @@ -97,13 +97,12 @@ public abstract class AbstractConsoleRunnerWithHistory { } } - private void initConsoleUI(Process process) { // Init console view myConsoleView = createConsoleView(); myConsoleView.setBorder(new SideBorder(UIUtil.getBorderColor(), SideBorder.LEFT)); - myProcessHandler = createProcessHandler(process, myProvider.getCommandLineString()); + myProcessHandler = createProcessHandler(process, myProvider.getCommandLineString()); myConsoleExecuteActionHandler = createConsoleExecuteActionHandler();