You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ft...@apache.org on 2014/04/30 11:59:04 UTC

[15/15] git commit: [flex-sdk] [refs/heads/FDBWorkers] - FLEX-34292: Can't select another worker while a pending prompt is required

FLEX-34292: Can't select another worker while a pending prompt is required


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/9ced6a87
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/9ced6a87
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/9ced6a87

Branch: refs/heads/FDBWorkers
Commit: 9ced6a87f74183627a281597a1fd851bbea48edb
Parents: 379cb60
Author: Fr�d�ric THMOAS <ft...@apache.org>
Authored: Wed Apr 30 10:51:00 2014 +0100
Committer: Fr�d�ric THMOAS <ft...@apache.org>
Committed: Wed Apr 30 10:51:00 2014 +0100

----------------------------------------------------------------------
 modules/debugger/src/java/flex/tools/debugger/cli/DebugCLI.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/9ced6a87/modules/debugger/src/java/flex/tools/debugger/cli/DebugCLI.java
----------------------------------------------------------------------
diff --git a/modules/debugger/src/java/flex/tools/debugger/cli/DebugCLI.java b/modules/debugger/src/java/flex/tools/debugger/cli/DebugCLI.java
index 6eb04ef..95f207b 100644
--- a/modules/debugger/src/java/flex/tools/debugger/cli/DebugCLI.java
+++ b/modules/debugger/src/java/flex/tools/debugger/cli/DebugCLI.java
@@ -2357,7 +2357,7 @@ public class DebugCLI implements Runnable, SourceLocator {
                 } else {
                     pendingPromptIsolate = hasPendingInitialPrompts();
                 }
-                if (pendingPromptIsolate != -1) {
+                if (pendingPromptIsolate != -1 && pendingPromptIsolate == m_activeIsolate) {
                     dumpInitialPrompt(pendingPromptIsolate);
                 }
             }