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>2009-09-13 11:00:44 +0400
committerAndrea Weikert <elubie@gmx.net>2009-09-13 11:00:44 +0400
commitb1e418db20cb854a933f0dcf9689a9104b99be7d (patch)
treecb8d2a20e07138fbc7c5783941641c6c41d97232 /source/blender/editors/space_file/file_panels.c
parent69496abf1d91829afdfcb807e06a2f48f19ffbc3 (diff)
2.5 filebrowser
fix operator property name 'type' was used by sequencer for strip effect type. Changed to 'filemode' for file browser.
Diffstat (limited to 'source/blender/editors/space_file/file_panels.c')
-rw-r--r--source/blender/editors/space_file/file_panels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/file_panels.c b/source/blender/editors/space_file/file_panels.c
index 2d351016893..1b54277c383 100644
--- a/source/blender/editors/space_file/file_panels.c
+++ b/source/blender/editors/space_file/file_panels.c
@@ -181,7 +181,7 @@ static void file_panel_operator(const bContext *C, Panel *pa)
RNA_STRUCT_BEGIN(op->ptr, prop) {
if(strcmp(RNA_property_identifier(prop), "rna_type") == 0)
continue;
- if(strcmp(RNA_property_identifier(prop), "type") == 0)
+ if(strcmp(RNA_property_identifier(prop), "filemode") == 0)
continue;
if(strcmp(RNA_property_identifier(prop), "path") == 0)
continue;