Win32: Vista dialogs: reverse the logic of applying FOS_STRICTFILETYPES to IFileDialog.

This commit is contained in:
Bart 2023-08-19 19:32:53 +02:00
parent e5c0139d49
commit ed3e261065

View File

@ -843,7 +843,7 @@ begin
Result := 0;
if ofAllowMultiSelect in Options then Result := Result or FOS_ALLOWMULTISELECT;
if ofCreatePrompt in Options then Result := Result or FOS_CREATEPROMPT;
if ofExtensionDifferent in Options then Result := Result or FOS_STRICTFILETYPES;
if not (ofExtensionDifferent in Options) then Result := Result or FOS_STRICTFILETYPES;
if ofFileMustExist in Options then Result := Result or FOS_FILEMUSTEXIST;
if ofNoChangeDir in Options then Result := Result or FOS_NOCHANGEDIR;
if ofNoDereferenceLinks in Options then Result := Result or FOS_NODEREFERENCELINKS;