TFilenameEdit: adjust InitialDir after user executes the dialog. This is analogue to how TOpenDialog behaves.

This commit is contained in:
Bart 2024-03-14 19:54:23 +01:00
parent 7446930ef3
commit 4c4c9631aa

View File

@ -1506,10 +1506,15 @@ end;
procedure TFileNameEdit.RunDialog;
var
D: TCommonDialog;
Res: Boolean;
begin
D := CreateDialog(DialogKind);
try
if D.Execute then
Res := D.Execute;
//this is analogue to how TOpenDialog behaves, InitialDir is retrieved from the dialog, even if user cancels the dialog.
if (D is TOpenDialog) then
InitialDir := TOpenDialog(D).InitialDir;
if Res then
SaveDialogResult(DialogKind, D);
finally
D.Free;