mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-06 08:47:18 +01:00
fixed findinfiles dialog ofFileMustExist
git-svn-id: trunk@8313 -
This commit is contained in:
parent
c17ae7dae6
commit
a9b9040e45
@ -202,7 +202,8 @@ begin
|
||||
|
||||
SelectDirectoryDialog := TSelectDirectoryDialog.Create(Self);
|
||||
with SelectDirectoryDialog do
|
||||
Options:= Options + [ofPathMustExist];
|
||||
// the whole selected directory must exist (ofPathMustExist is not enough)
|
||||
Options:= Options + [ofFileMustExist];
|
||||
|
||||
FileMaskLabel:=TLabel.Create(Self);
|
||||
with FileMaskLabel do begin
|
||||
|
||||
Loading…
Reference in New Issue
Block a user