Page MenuHome

Fix T89826: VSE snapping with constrained axis
ClosedPublic

Authored by Richard Antalik (ISS) on Jul 13 2021, 4:19 PM.

Details

Summary

Constraining to X axis caused snapping to not work at all. Constraining
to Y axis caused snapping indicator to be drawn, when snapping doesn't
occur.

Diff Detail

Repository
rB Blender

Event Timeline

Richard Antalik (ISS) requested review of this revision.Jul 13 2021, 4:19 PM
Richard Antalik (ISS) created this revision.
source/blender/editors/transform/transform_mode_edge_seq_slide.c
132

t->values is not supposed to change like that.
Can you pass values_final as a parameter?

t->con.applyVec(t, NULL, NULL, values_final, values_final);
Richard Antalik (ISS) marked an inline comment as done.
  • Don't change t->values, reuse values_final for applying constraints
This revision is now accepted and ready to land.Jul 13 2021, 7:54 PM