Also use absolute path for custom capture path too

This commit is contained in:
Jaex 2018-07-02 15:01:49 +03:00
parent 6c84bb12b9
commit d494bcdc27

View file

@ -157,7 +157,7 @@ public string CaptureFolder
{
if (!string.IsNullOrEmpty(AdvancedSettings.CapturePath))
{
return Helpers.ExpandFolderVariables(AdvancedSettings.CapturePath);
return Helpers.GetAbsolutePath(AdvancedSettings.CapturePath);
}
return Program.ScreenshotsFolder;