Init asLineBreakStyle setting with Windows linebreaks, so we don't run into crashes when grid value does not have any line ending. See issue #47 and https://www.heidisql.com/forum.php?t=24883

This commit is contained in:
Ansgar Becker
2018-02-05 19:07:54 +01:00
parent f7b4d0c0b8
commit 810decc23e

View File

@ -3549,7 +3549,7 @@ begin
InitSetting(asFavoriteObjects, 'FavoriteObjects', 0, False, '', True);
InitSetting(asFavoriteObjectsOnly, 'FavoriteObjectsOnly', 0, False);
InitSetting(asFullTableStatus, 'FullTableStatus', 0, True, '', True);
InitSetting(asLineBreakStyle, 'LineBreakStyle', Integer(lbsNone));
InitSetting(asLineBreakStyle, 'LineBreakStyle', Integer(lbsWindows));
InitSetting(asFileDialogEncoding, 'FileDialogEncoding_%s', 0);
end;