+ Added file updating

This commit is contained in:
Matthew Cech
2019-05-05 22:10:48 -07:00
parent 99667330df
commit d252cf54b0
3 changed files with 15 additions and 2 deletions
+4 -1
View File
@@ -174,7 +174,10 @@ public class BenchmarkManager
private void OnRescan(MonitoredFile file)
{
// For now, all we need is to note that something was adjusted.
if(file.path.endsWith(extension))
if(file.path.toString().contains(extension))
{
BenchmarkLog.Log("File status changed: " + file.path);
needsUpdate = true;
}
}
}