Updated FDesktopPlatformMac::FileDialogShared() to handle a case where no extensions were specified in FileTypes string

#jira UE-62421
#rb none

[CL 4279969 by Michael Trepka in Dev-Editor branch]
This commit is contained in:
Michael Trepka
2018-08-13 12:50:08 -04:00
parent 96341794a1
commit 9a846dd358
@@ -412,6 +412,11 @@ bool FDesktopPlatformMac::FileDialogShared(bool bSave, const void* ParentWindowH
}
}
if ([AllowedFileTypes count] == 1)
{
[AllowedFileTypes addObject:@""];
}
[AccessoryView AddAllowedFileTypes:AllowedFileTypes];
bool bOkPressed = false;