summaryrefslogtreecommitdiff
path: root/python/pydevSrc/com/jetbrains/python/debugger/pydev/AbstractThreadCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'python/pydevSrc/com/jetbrains/python/debugger/pydev/AbstractThreadCommand.java')
-rw-r--r--python/pydevSrc/com/jetbrains/python/debugger/pydev/AbstractThreadCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/pydevSrc/com/jetbrains/python/debugger/pydev/AbstractThreadCommand.java b/python/pydevSrc/com/jetbrains/python/debugger/pydev/AbstractThreadCommand.java
index 690d893bb274..b235b78bbf96 100644
--- a/python/pydevSrc/com/jetbrains/python/debugger/pydev/AbstractThreadCommand.java
+++ b/python/pydevSrc/com/jetbrains/python/debugger/pydev/AbstractThreadCommand.java
@@ -18,11 +18,11 @@ public abstract class AbstractThreadCommand<T> extends AbstractCommand<T> {
return command == CREATE_THREAD ||
command == KILL_THREAD ||
command == RESUME_THREAD ||
- command == SUSPEND_THREAD;
+ command == SUSPEND_THREAD ||
+ command == SHOW_CONSOLE;
}
public String getThreadId() {
return myThreadId;
}
-
}