Horizon

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 10  →  ?path2? @ 11
/Horizon/MainForm.cs
@@ -528,7 +528,7 @@
color = folder.Color;
}
 
await _snapshotDatabase.CreateSnapshot(fileName, file, color, _cancellationToken);
await _snapshotDatabase.CreateSnapshotAsync(fileName, file, color, _cancellationToken);
}
catch (SQLiteException exception)
{
@@ -558,7 +558,7 @@
color = folder.Color;
}
 
await _snapshotDatabase.CreateSnapshot(fileName, file, color, _cancellationToken);
await _snapshotDatabase.CreateSnapshotAsync(fileName, file, color, _cancellationToken);
}
catch (SQLiteException exception)
{
@@ -752,7 +752,7 @@
var fileName = System.IO.Path.GetFileName(path);
var screenCapture = ScreenCapture.Capture((Utilities.CaptureMode)Configuration.CaptureMode);
 
await _snapshotDatabase.CreateSnapshot(fileName, path, screenCapture, color,
await _snapshotDatabase.CreateSnapshotAsync(fileName, path, screenCapture, color,
_cancellationToken);
}
catch (SQLiteException exception)