mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 22:18:15 +02:00
TFilenameEdit: adjust InitialDir after user executes the dialog. This is analogue to how TOpenDialog behaves.
This commit is contained in:
parent
7446930ef3
commit
4c4c9631aa
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user