1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

QueueFullRefresh fix

This commit is contained in:
Brian Fiete 2022-05-02 08:57:41 -07:00
parent 2b6a909b34
commit 772355cb40
3 changed files with 3 additions and 6 deletions

View file

@ -1379,9 +1379,9 @@ namespace IDE
if ((sourceViewPanel.mParent != null) && (sourceViewPanel != excludeSourceViewPanel))
{
if (viewRefreshKind ==.Collapse)
sourceViewPanel.QueueFullRefresh(true);
else
sourceViewPanel.QueueCollapseRefresh();
else
sourceViewPanel.QueueFullRefresh(true);
}
});
}