allow sequencer image names to be editable

This commit is contained in:
2010-07-09 13:57:59 +00:00
parent 4059df91a4
commit 761be67d8a
2 changed files with 0 additions and 6 deletions

View File

@@ -82,10 +82,6 @@
/* own include */
#include "mesh_intern.h"
/* XXX */
static int pupmenu(const char *dummy) {return 0;}
/* XXX */
/* * ********************** no editmode!!! *********** */

View File

@@ -583,9 +583,7 @@ static void rna_def_strip_element(BlenderRNA *brna)
prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILENAME);
RNA_def_property_string_sdna(prop, NULL, "name");
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_ui_text(prop, "Filename", "");
RNA_def_property_string_funcs(prop, NULL, NULL, "rna_SequenceElement_filename_set");
RNA_def_property_update(prop, NC_SCENE|ND_SEQUENCER, "rna_Sequence_update");
}