From e70a1e96daebb9e98f5d03acafa1f0cf0dfab67b Mon Sep 17 00:00:00 2001 From: Sinai Date: Thu, 6 May 2021 04:18:35 +1000 Subject: [PATCH] Update ReflectionInspector.cs --- src/UI/Inspectors/ReflectionInspector.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/UI/Inspectors/ReflectionInspector.cs b/src/UI/Inspectors/ReflectionInspector.cs index 6515d9a..e83881b 100644 --- a/src/UI/Inspectors/ReflectionInspector.cs +++ b/src/UI/Inspectors/ReflectionInspector.cs @@ -230,7 +230,6 @@ namespace UnityExplorer.UI.Inspectors private void UpdateDisplayedMembers()// bool onlyAutoUpdate) { - ExplorerCore.Log("Updating values..."); bool shouldRefresh = false; foreach (var cell in MemberScrollPool.CellPool) { @@ -239,7 +238,6 @@ namespace UnityExplorer.UI.Inspectors var member = cell.MemberOccupant; if (member.ShouldAutoEvaluate) // && (!onlyAutoUpdate || member.AutoUpdateWanted)) { - ExplorerCore.Log("Evaluating cell " + cell.MemberOccupant.NameForFiltering); shouldRefresh = true; member.Evaluate(); member.SetDataToCell(member.CellView);