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 22:31:52 +0400
committerAndrea Weikert <elubie@gmx.net>2012-10-27 22:31:52 +0400
commit8a6797d6a9a6fcc8f49961cf785b6748e9c5c520 (patch)
tree72c10e54bdb8795b9c3494e7b131f12f152e0ed8 /source/blender/makesrna/intern/rna_space.c
parent89b7e2257884388de36c7e963a6ba4de17986b89 (diff)
== file browser ==
PATCH: [#32989] Activate backup files filter in File Browser Contributed by Georg Kronthaler, many thanks! (I just moved the icon to a different place reserved for file browser icons) * enables the filtering of backup files in the file browser * adds a 'filter backup files'-icon to the filter buttons * adds new icons for backup files in list and thumbnail view * enables file preview for the backup files
Diffstat (limited to 'source/blender/makesrna/intern/rna_space.c')
-rw-r--r--source/blender/makesrna/intern/rna_space.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 4b3288a0a90..4a29ae03d9d 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2826,6 +2826,12 @@ static void rna_def_fileselect_params(BlenderRNA *brna)
RNA_def_property_ui_icon(prop, ICON_FILE_BLEND, 0);
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_FILE_PARAMS, NULL);
+ prop = RNA_def_property(srna, "use_filter_backup", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "filter", BLENDERFILE_BACKUP);
+ RNA_def_property_ui_text(prop, "Filter BlenderBackup files", "Show .blend1, .blend2, etc. files");
+ RNA_def_property_ui_icon(prop, ICON_FILE_BACKUP, 0);
+ RNA_def_property_update(prop, NC_SPACE | ND_SPACE_FILE_PARAMS, NULL);
+
prop = RNA_def_property(srna, "use_filter_movie", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "filter", MOVIEFILE);
RNA_def_property_ui_text(prop, "Filter Movies", "Show movie files");