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:
authorCampbell Barton <ideasman42@gmail.com>2009-06-09 09:39:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-06-09 09:39:01 +0400
commit031dbc89cf543064f569edaa206332ad2c38fe36 (patch)
tree60f04cc6d15ad817e4915a5063b5b33e36ca6e3e /source/blender/makesrna/intern/rna_sequence.c
parentc8b4cf92067ffeb625aa39003baf5d8f7c3f0025 (diff)
- rna wrapped sequencer space
- uiItemEnumO_string, forgot to actually set the enum value - added more sequencer header buttons (these should probably be moved to a view panel eventually)
Diffstat (limited to 'source/blender/makesrna/intern/rna_sequence.c')
-rw-r--r--source/blender/makesrna/intern/rna_sequence.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_sequence.c b/source/blender/makesrna/intern/rna_sequence.c
index da44ae156e1..0cf627a20fc 100644
--- a/source/blender/makesrna/intern/rna_sequence.c
+++ b/source/blender/makesrna/intern/rna_sequence.c
@@ -189,7 +189,11 @@ static void rna_def_strip_proxy(BlenderRNA *brna)
prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH);
RNA_def_property_string_sdna(prop, NULL, "dir");
- RNA_def_property_ui_text(prop, "Directory", "");
+ RNA_def_property_ui_text(prop, "Directory", "Location to story the proxy file");
+
+ prop= RNA_def_property(srna, "file", PROP_STRING, PROP_DIRPATH);
+ RNA_def_property_string_sdna(prop, NULL, "file");
+ RNA_def_property_ui_text(prop, "File", "Proxy file name");
}
static void rna_def_strip_color_balance(BlenderRNA *brna)