Skip to content

Commit b184cb5

Browse files
committed
Avoid log file meta commit noise
1 parent b4a68e8 commit b184cb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Editor/History.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class History{
1212
public History(string path = null){
1313
this.path = path;
1414
this.frames = new List<Frame>();
15-
if(path != null) File.Delete(path);
15+
if(path != null){ File.Delete(path); File.Delete(path + ".meta"); }
1616
}
1717

1818
public History(Filter filter){

0 commit comments

Comments
 (0)