parent
70a993aacb
commit
fa5a732b68
2 changed files with 9 additions and 1 deletions
4
extern/igfd/ImGuiFileDialog.cpp
vendored
4
extern/igfd/ImGuiFileDialog.cpp
vendored
|
|
@ -1475,6 +1475,10 @@ namespace IGFD
|
|||
infos->fileExt = infos->fileNameExt.substr(lpt);
|
||||
}
|
||||
|
||||
for (char& i: infos->fileExt) {
|
||||
if (i>='A' && i<='Z') i+='a'-'A';
|
||||
}
|
||||
|
||||
if (!vFileDialogInternal.puFilterManager.IsCoveredByFilters(infos->fileExt))
|
||||
{
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue