This commit is contained in:
monitor1394
2022-03-20 18:52:50 +08:00
parent 4e24ba7922
commit c510831f59
64 changed files with 562 additions and 159 deletions

View File

@@ -411,8 +411,8 @@ namespace XCharts.Runtime
public bool IsDataChanged()
{
foreach (var b in m_DataUpdateFlag)
if (b) return true;
for (int i = 0; i < m_DataUpdateFlag.Count; i++)
if (m_DataUpdateFlag[i]) return true;
return false;
}