Index: source/blender/editors/space_file/filesel.c =================================================================== --- source/blender/editors/space_file/filesel.c (Revision 51594) +++ source/blender/editors/space_file/filesel.c (Arbeitskopie) @@ -168,8 +168,6 @@ params->filter |= RNA_boolean_get(op->ptr, "filter_image") ? IMAGEFILE : 0; if (RNA_struct_find_property(op->ptr, "filter_movie")) params->filter |= RNA_boolean_get(op->ptr, "filter_movie") ? MOVIEFILE : 0; - if (RNA_struct_find_property(op->ptr, "filter_text")) - params->filter |= RNA_boolean_get(op->ptr, "filter_text") ? TEXTFILE : 0; if (RNA_struct_find_property(op->ptr, "filter_python")) params->filter |= RNA_boolean_get(op->ptr, "filter_python") ? PYSCRIPTFILE : 0; if (RNA_struct_find_property(op->ptr, "filter_font")) Index: source/blender/editors/space_file/file_draw.c =================================================================== --- source/blender/editors/space_file/file_draw.c (Revision 51594) +++ source/blender/editors/space_file/file_draw.c (Arbeitskopie) @@ -272,6 +272,8 @@ return ICON_FILE_BLANK; else if (file->flags & COLLADAFILE) return ICON_FILE_BLANK; + else if (file->flags & TEXTFILE) + return ICON_FILE_TEXT; else return ICON_FILE_BLANK; }