Skip to content

Commit

Permalink
Fixed|Windows: File extension filtering in FileDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Sep 1, 2019
1 parent 253fdd7 commit 4ff8fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/libs/gui/src/dialogs/filedialog_windows.cpp
Expand Up @@ -41,7 +41,7 @@ DE_PIMPL_NOREF(FileDialog)
for (const FileType &fileType : fileTypes)
{
const String exts =
(fileType.extensions ? String::join(fileType.extensions, ";") : DE_STR("*"));
(fileType.extensions ? "*." + String::join(fileType.extensions, ";*.") : DE_STR("*"));
list << std::make_pair(fileType.label.toUtf16(), exts.toUtf16());
}
return list;
Expand Down

0 comments on commit 4ff8fbd

Please sign in to comment.