mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-11 04:52:21 +02:00
Deferred ShowOuput, fixed double-output window
This commit is contained in:
parent
4479af6df4
commit
07df54ddba
1 changed files with 8 additions and 1 deletions
|
@ -168,6 +168,7 @@ namespace IDE
|
||||||
public Image mTransparencyGridImage ~ delete _;
|
public Image mTransparencyGridImage ~ delete _;
|
||||||
public Image mSquiggleImage ~ delete _;
|
public Image mSquiggleImage ~ delete _;
|
||||||
public Image mCircleImage ~ delete _;
|
public Image mCircleImage ~ delete _;
|
||||||
|
public bool mWantShowOutput;
|
||||||
|
|
||||||
public OutputPanel mOutputPanel;
|
public OutputPanel mOutputPanel;
|
||||||
public ImmediatePanel mImmediatePanel;
|
public ImmediatePanel mImmediatePanel;
|
||||||
|
@ -6692,7 +6693,7 @@ namespace IDE
|
||||||
|
|
||||||
public void OutputErrorLine(String format, params Object[] args)
|
public void OutputErrorLine(String format, params Object[] args)
|
||||||
{
|
{
|
||||||
ShowOutput();
|
mWantShowOutput = true;
|
||||||
var errStr = scope String();
|
var errStr = scope String();
|
||||||
errStr.Append("ERROR: ", format);
|
errStr.Append("ERROR: ", format);
|
||||||
OutputLineSmart(errStr, params args);
|
OutputLineSmart(errStr, params args);
|
||||||
|
@ -12402,6 +12403,12 @@ namespace IDE
|
||||||
|
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
|
if (mWantShowOutput)
|
||||||
|
{
|
||||||
|
ShowOutput();
|
||||||
|
mWantShowOutput = false;
|
||||||
|
}
|
||||||
|
|
||||||
if (mDbgFastUpdate)
|
if (mDbgFastUpdate)
|
||||||
{
|
{
|
||||||
RefreshRate = 240;
|
RefreshRate = 240;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue