Make sure screenshots folder path is absolute

This commit is contained in:
Jaex 2018-07-02 14:54:08 +03:00
parent d809258306
commit 6c84bb12b9

View file

@ -211,7 +211,8 @@ public static string ScreenshotsFolder
get
{
string subFolderName = NameParser.Parse(NameParserType.FolderPath, Settings.SaveImageSubFolderPattern);
return Path.Combine(ScreenshotsParentFolder, subFolderName);
string folderPath = Path.Combine(ScreenshotsParentFolder, subFolderName);
return Helpers.GetAbsolutePath(folderPath);
}
}