mirror of
https://github.com/libretro/Mesen.git
synced 2025-03-04 06:17:02 +00:00
Debugger: Fixed rare multithreading crash when opening trace logger (BeginInvoke called before form loaded)
This commit is contained in:
parent
ce1b190928
commit
fefeaeca54
@ -50,13 +50,18 @@ namespace Mesen.GUI.Debugger
|
||||
_entityBinder.AddBinding("StatusFormat", cboStatusFlagFormat);
|
||||
_entityBinder.UpdateUI();
|
||||
|
||||
this.toolTip.SetToolTip(this.picExpressionWarning, "Condition contains invalid syntax or symbols.");
|
||||
this.toolTip.SetToolTip(this.picHelp, "When a condition is given, instructions will only be logged by the trace logger if the condition returns a value not equal to 0 or false." + Environment.NewLine + Environment.NewLine + frmBreakpoint.GetConditionTooltip(false));
|
||||
}
|
||||
|
||||
protected override void OnLoad(EventArgs e)
|
||||
{
|
||||
base.OnLoad(e);
|
||||
|
||||
UpdateMenu();
|
||||
txtTraceLog.FontSize = 10;
|
||||
tmrUpdateLog.Start();
|
||||
RefreshLog(true);
|
||||
|
||||
this.toolTip.SetToolTip(this.picExpressionWarning, "Condition contains invalid syntax or symbols.");
|
||||
this.toolTip.SetToolTip(this.picHelp, "When a condition is given, instructions will only be logged by the trace logger if the condition returns a value not equal to 0 or false." + Environment.NewLine + Environment.NewLine + frmBreakpoint.GetConditionTooltip(false));
|
||||
}
|
||||
|
||||
protected override void OnFormClosing(FormClosingEventArgs e)
|
||||
|
Loading…
x
Reference in New Issue
Block a user