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:
authorThomas Dinges <blender@dingto.org>2012-03-15 18:36:54 +0400
committerThomas Dinges <blender@dingto.org>2012-03-15 18:36:54 +0400
commit1002714fd834305666ed664c4663a47171472464 (patch)
tree6cb4995f96dc3b3f8bc5af2fe4f45240b585e2d4 /source/blender/makesrna
parent32a92a65e50a59601b92a296f119c5bd4c81ca8a (diff)
2.6 User Interface:
* New Icons for the File menu, patch by David Klein (cgeffex). Thanks a lot! * This patch also adds a new icon for the use_filter_text in Filebrowser.
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index d89af94d447..a3a447b0478 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2610,7 +2610,7 @@ static void rna_def_fileselect_params(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_filter_text", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "filter", TEXTFILE);
RNA_def_property_ui_text(prop, "Filter Text", "Show text files");
- RNA_def_property_ui_icon(prop, ICON_FILE_BLANK, 0);
+ RNA_def_property_ui_icon(prop, ICON_FILE_TEXT, 0);
RNA_def_property_update(prop, NC_SPACE|ND_SPACE_FILE_PARAMS, NULL);
prop = RNA_def_property(srna, "use_filter_folder", PROP_BOOLEAN, PROP_NONE);