Raytracing: Fixed search locations of povray

This commit is contained in:
Yorik van Havre
2018-10-03 16:33:41 -03:00
parent 27c80884a1
commit 1dfdaca5d3

View File

@@ -392,7 +392,11 @@ Gui::Action * CmdRaytracingNewPovrayProject::createAction(void)
addTemplates(path);
path = App::Application::getUserAppDataDir();
path += "data/Mod/Raytracing/Templates/";
path += "Mod/Raytracing/Templates/";
addTemplates(path);
path = App::Application::getUserAppDataDir();
path += "Templates/";
addTemplates(path);
_pcAction = pcAction;