Commit: 3d2c31387a0fcf3612a97b6b348dfba8828f29ac Author: Richard Antalik Date: Thu Sep 16 04:21:27 2021 +0200 Branches: temp-vse-preview-transform2 https://developer.blender.org/rB3d2c31387a0fcf3612a97b6b348dfba8828f29ac
Don't use pixel unit for origin property =================================================================== M source/blender/makesrna/intern/rna_sequencer.c =================================================================== diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c index 96687ba73d2..b713ffb68b4 100644 --- a/source/blender/makesrna/intern/rna_sequencer.c +++ b/source/blender/makesrna/intern/rna_sequencer.c @@ -1442,7 +1442,7 @@ static void rna_def_strip_transform(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Rotation", "Rotate around image center"); RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_SequenceTransform_update"); - prop = RNA_def_property(srna, "origin", PROP_FLOAT, PROP_PIXEL); + prop = RNA_def_property(srna, "origin", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "origin"); RNA_def_property_ui_text(prop, "Origin", "Origin of image for transformation"); RNA_def_property_ui_range(prop, 0, 1, 1, 3); _______________________________________________ Bf-blender-cvs mailing list [email protected] List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs
