Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Weikert <elubie@gmx.net>2012-10-27 21:47:58 +0400
committerAndrea Weikert <elubie@gmx.net>2012-10-27 21:47:58 +0400
commit89b7e2257884388de36c7e963a6ba4de17986b89 (patch)
tree70f4f3cca83c51a6797837d1c665379de626a3b4 /source/blender/editors/space_file/filesel.c
parent3f88ca0d80150707e4be5b606ca54807a4f84b5e (diff)
== filebrowser ==
PATCH: [#32985] File Browser text file icon does not match text filter icon Contributed by Georg Kronthaler, many thanks! * set correct icon for text files and drag&drop * remove duplicate if for filter_text * fixed a couple of blanks at the end of line.
Diffstat (limited to 'source/blender/editors/space_file/filesel.c')
-rw-r--r--source/blender/editors/space_file/filesel.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/editors/space_file/filesel.c b/source/blender/editors/space_file/filesel.c
index 8d0f90f5931..49562958f82 100644
--- a/source/blender/editors/space_file/filesel.c
+++ b/source/blender/editors/space_file/filesel.c
@@ -168,8 +168,6 @@ short ED_fileselect_set_params(SpaceFile *sfile)
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"))