Debugger: Clicking on the main window will no longer pop up the debugger window over the ppu viewer/etc.

This commit is contained in:
Souryo 2016-12-04 10:30:15 -05:00
parent eafb8cb1a3
commit 0df07aadc4
2 changed files with 2 additions and 2 deletions

View file

@ -544,7 +544,7 @@ namespace Mesen.GUI.Debugger
_traceLogger.FormClosed += (s, evt) => {
_traceLogger = null;
};
_traceLogger.Show(sender, this);
OpenChildForm(_traceLogger);
} else {
_traceLogger.Focus();
}

View file

@ -853,7 +853,7 @@ namespace Mesen.GUI.Forms
_debugger.FormClosed += (obj, args) => {
_debugger = null;
};
_debugger.Show(sender);
_debugger.Show();
} else {
_debugger.Focus();
}