IDE: Improve initialization of directory browse button in FindInFilesDlg. Issue #40344, patch from Bruno K.

This commit is contained in:
Juha 2023-06-23 08:57:03 +03:00
parent 8b426df777
commit 36a4b07e52
2 changed files with 2 additions and 1 deletions

View File

@ -296,7 +296,7 @@ object LazFindInFilesDialog: TLazFindInFilesDialog
end
object SelectDirectoryDialog: TSelectDirectoryDialog
FilterIndex = 0
Options = [ofFileMustExist, ofEnableSizing, ofViewDetail]
Options = [ofExtensionDifferent,ofFileMustExist,ofEnableSizing,ofViewDetail]
Left = 180
Top = 70
end

View File

@ -160,6 +160,7 @@ begin
else
SelectDirectoryDialog.InitialDir := GetBaseDirectory;
SelectDirectoryDialog.FileName:='';
if SelectDirectoryDialog.Execute then
DirectoriesComboBox.Text := AppendPathDelim(TrimFilename(SelectDirectoryDialog.FileName));
StoreIDEFileDialog(SelectDirectoryDialog);