From 761be67d8a5741bf04df19e2846b181d54aaa550 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 9 Jul 2010 13:57:59 +0000 Subject: [PATCH] allow sequencer image names to be editable --- source/blender/editors/mesh/meshtools.c | 4 ---- source/blender/makesrna/intern/rna_sequencer.c | 2 -- 2 files changed, 6 deletions(-) diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c index 70098e0812f..87b5c886b4a 100644 --- a/source/blender/editors/mesh/meshtools.c +++ b/source/blender/editors/mesh/meshtools.c @@ -82,10 +82,6 @@ /* own include */ #include "mesh_intern.h" -/* XXX */ -static int pupmenu(const char *dummy) {return 0;} -/* XXX */ - /* * ********************** no editmode!!! *********** */ diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c index 0c60f04c2c2..9313a85c17f 100644 --- a/source/blender/makesrna/intern/rna_sequencer.c +++ b/source/blender/makesrna/intern/rna_sequencer.c @@ -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"); }