aboutsummaryrefslogtreecommitdiffstats
path: root/ui/win32
diff options
context:
space:
mode:
Diffstat (limited to 'ui/win32')
-rw-r--r--ui/win32/file_dlg_win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/win32/file_dlg_win32.c b/ui/win32/file_dlg_win32.c
index 533ff84915..8d37e95c16 100644
--- a/ui/win32/file_dlg_win32.c
+++ b/ui/win32/file_dlg_win32.c
@@ -1479,7 +1479,7 @@ build_file_type_list(gboolean save, int *item_to_select) {
sep = '(';
for (extension = extensions_list; extension != NULL;
extension = g_slist_next(extension)) {
- g_string_append_printf(str, "%c%s", sep, (char *)extension->data);
+ g_string_append_printf(str, "%c*.%s", sep, (char *)extension->data);
sep = ';';
}
g_string_append_printf(str, ")");
@@ -1493,7 +1493,7 @@ build_file_type_list(gboolean save, int *item_to_select) {
extension = g_slist_next(extension)) {
if (sep != '\0')
g_string_append_c(str, sep);
- g_string_append_printf(str, "%c%s", sep, (char *)extension->data);
+ g_string_append_printf(str, "%c*.%s", sep, (char *)extension->data);
sep = ';';
}
str16 = utf_8to16(str->str);