changeset 36613:e5ce1d3bd82c

Update font file filter of the file selector (only with FreeType). Add DESC file extension unconditionally.
author ib
date Thu, 23 Jan 2014 17:27:27 +0000
parents 3b504dde73a5
children a6a86c77e9cc
files gui/dialog/fileselect.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gui/dialog/fileselect.c	Thu Jan 23 16:57:34 2014 +0000
+++ b/gui/dialog/fileselect.c	Thu Jan 23 17:27:27 2014 +0000
@@ -125,9 +125,10 @@
 #ifdef CONFIG_FREETYPE
     { MSGTR_Filter_TTF,       "*.ttf"       },
     { MSGTR_Filter_Type1,     "*.pfb"       },
-    { MSGTR_Filter_AllFonts,  "*.pfb,*.ttf" },
-#else
+#endif
     { MSGTR_Filter_FontFiles, "*.desc"      },
+#ifdef CONFIG_FREETYPE
+    { MSGTR_Filter_AllFonts,  "*.pfb,*.ttf,*.desc" },
 #endif
     { MSGTR_Filter_AllFiles,  "*"           },
     { NULL,                   NULL          }