mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 13:58:47 +00:00
DebugWindow only displayed for Qemu
This commit is contained in:
parent
a053274527
commit
88b6604f0c
1 changed files with 5 additions and 2 deletions
|
|
@ -42,8 +42,11 @@ namespace Cosmos.Build.Windows {
|
|||
|
||||
xOptionsWindow.DoBuild();
|
||||
|
||||
var xDebugWindow = new DebugWindow();
|
||||
xDebugWindow.ShowDialog();
|
||||
//Only show DebugWindow if virtual machine is Qemu.
|
||||
if (xOptionsWindow.rdioQEMU.IsChecked.Value) {
|
||||
var xDebugWindow = new DebugWindow();
|
||||
xDebugWindow.ShowDialog();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue