mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-02 22:30:27 +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();
|
xOptionsWindow.DoBuild();
|
||||||
|
|
||||||
var xDebugWindow = new DebugWindow();
|
//Only show DebugWindow if virtual machine is Qemu.
|
||||||
xDebugWindow.ShowDialog();
|
if (xOptionsWindow.rdioQEMU.IsChecked.Value) {
|
||||||
|
var xDebugWindow = new DebugWindow();
|
||||||
|
xDebugWindow.ShowDialog();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue