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:
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c6
-rw-r--r--source/blender/sequencer/intern/render.c6
2 files changed, 7 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 2a1ea3d6716..7271ecb49eb 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -10840,8 +10840,10 @@ static void rna_def_node_socket_standard_types(BlenderRNA *brna)
brna, "NodeSocketFloatAngle", "NodeSocketInterfaceFloatAngle", PROP_ANGLE);
rna_def_node_socket_float(
brna, "NodeSocketFloatTime", "NodeSocketInterfaceFloatTime", PROP_TIME);
- rna_def_node_socket_float(
- brna, "NodeSocketFloatTimeAbsolute", "NodeSocketInterfaceFloatTimeAbsolute", PROP_TIME_ABSOLUTE);
+ rna_def_node_socket_float(brna,
+ "NodeSocketFloatTimeAbsolute",
+ "NodeSocketInterfaceFloatTimeAbsolute",
+ PROP_TIME_ABSOLUTE);
rna_def_node_socket_float(
brna, "NodeSocketFloatDistance", "NodeSocketInterfaceFloatDistance", PROP_DISTANCE);
diff --git a/source/blender/sequencer/intern/render.c b/source/blender/sequencer/intern/render.c
index b0a8605e922..76623599864 100644
--- a/source/blender/sequencer/intern/render.c
+++ b/source/blender/sequencer/intern/render.c
@@ -514,9 +514,9 @@ static void sequencer_image_crop_transform_matrix(const Sequence *seq,
}
static void sequencer_image_crop_init(const Sequence *seq,
- const ImBuf *in,
- float crop_scale_factor,
- rctf *r_crop)
+ const ImBuf *in,
+ float crop_scale_factor,
+ rctf *r_crop)
{
const StripCrop *c = seq->strip->crop;
const int left = c->left * crop_scale_factor;