Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
[Debugger] Always set the layout back to Solution
Browse files Browse the repository at this point in the history
Fixes bug #20377
  • Loading branch information
jstedfast committed Feb 23, 2015
1 parent 932a837 commit 96d261e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -454,7 +454,7 @@ static void UnsetDebugLayout (string layout)
DispatchService.GuiSyncDispatch (delegate {
IdeApp.Workbench.HideCommandBar ("Debug");
if (IdeApp.Workbench.CurrentLayout == "Debug")
IdeApp.Workbench.CurrentLayout = layout;
IdeApp.Workbench.CurrentLayout = "Solution";
});
}

Expand Down

0 comments on commit 96d261e

Please sign in to comment.