Skip to content

Commit

Permalink
Обязательно записываем config.xml даже если всё поумолчанию
Browse files Browse the repository at this point in the history
  • Loading branch information
zamtmn committed Dec 24, 2024
1 parent 3fc071f commit 49508ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cad_source/zcad/uzcsysparams.pas
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ procedure SaveParams(xmlfile:string;var Params:tsavedparams);
finally
Config.Free;
end;
XMLConfig.Flush;
//не писать файл нельзя(когда все значения по умолчанию)
//т.к. при не нахождении конфиг "по умолчанию" создан не будет,
//но будет взят конфиг из дитрибутива
XMLConfig.SaveToFile(xmlfile);
//XMLConfig.Flush;
finally
XMLConfig.Free;
end;
Expand Down

0 comments on commit 49508ad

Please sign in to comment.