We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e89c281 commit 30db0a2Copy full SHA for 30db0a2
1 file changed
src/MainUtils.pas
@@ -33,7 +33,7 @@ interface
33
MSVISIO = 4;
34
35
36
- DOCTO_VERSION = '1.16.0'; // dont use 0x - choco needs incrementing versions.
+ DOCTO_VERSION = '1.16.2'; // dont use 0x - choco needs incrementing versions.
37
DOCTO_VERSION_NOTE = ' x64 Release ';
38
type
39
@@ -1291,7 +1291,9 @@ procedure TDocumentConverter.LoadConfig(Params: TStrings);
1291
else if (id = '--SHEETS') then
1292
begin
1293
// Sheet Indexs are 1 based.
1294
- fSelectedSheets.DelimitedText := value;
+
1295
+ fSelectedSheets.StrictDelimiter := true;
1296
+ fSelectedSheets.CommaText := value;
1297
if fSelectedSheets.Count = 0 then
1298
1299
HaltWithConfigError(205,'Expecting > 0 selected sheets: ' + value);
0 commit comments