mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
UpdateF, dx reinit
This commit is contained in:
parent
fa2cb7ba56
commit
e87bf5b029
24 changed files with 1029 additions and 415 deletions
|
@ -639,6 +639,7 @@ namespace IDE.ui
|
|||
mNavigationBar = new NavigationBar(this);
|
||||
AddWidget(mNavigationBar);
|
||||
}
|
||||
mAlwaysUpdateF = true;
|
||||
}
|
||||
public ~this()
|
||||
{
|
||||
|
@ -6811,13 +6812,19 @@ namespace IDE.ui
|
|||
|
||||
UpdateQueuedEmitShowData();
|
||||
|
||||
if (ewc.mCollapseNeedsUpdate)
|
||||
ewc.UpdateCollapse();
|
||||
|
||||
// Process after mQueuedCollapseData so mCharIdSpan is still valid
|
||||
ProcessDeferredResolveResults(0);
|
||||
}
|
||||
|
||||
public override void UpdateF(float updatePct)
|
||||
{
|
||||
base.UpdateF(updatePct);
|
||||
|
||||
var ewc = (SourceEditWidgetContent)mEditWidget.Content;
|
||||
if (ewc.mCollapseNeedsUpdate)
|
||||
ewc.UpdateCollapse(updatePct);
|
||||
}
|
||||
|
||||
public void UpdateQueuedEmitShowData()
|
||||
{
|
||||
var compiler = ResolveCompiler;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue