Fix for batch queue template file name, on behalf of guokai; see issue #542

This commit is contained in:
Oliver Duis
2011-03-01 19:55:12 +01:00
parent 89a2232c2e
commit 6d38d52b0a

View File

@@ -436,8 +436,7 @@ Glib::ustring BatchQueue::calcAutoFileNameBase (const Glib::ustring& origFileNam
ix++;
int i = options.savePathTemplate[ix]-'0';
if (i<da.size())
path = path + da[da.size()-i-1] + '/';
ix++;
path = path + da[da.size()-i-1];
}
else if (options.savePathTemplate[ix]=='f') {
path = path + filename;