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:
authorGermano Cavalcante <mano-wii>2020-08-31 16:14:40 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2020-08-31 17:24:37 +0300
commit546b900194f0f0464d126e1e18ea4fc7c9b1c1ff (patch)
tree002a8d8d326a5261c34f103e8d3347d00f00d87f /source/blender/editors/transform/transform_mode_push_pull.c
parenta1df2fc44388a92ba539f764203170902dd2a663 (diff)
Cleanup/Refactor: Split the snap to increments code
Now we have a better distinction of what is snap to grid and what is snap to increments. The code also allows the implementation of mixed snap for these modes.
Diffstat (limited to 'source/blender/editors/transform/transform_mode_push_pull.c')
-rw-r--r--source/blender/editors/transform/transform_mode_push_pull.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_mode_push_pull.c b/source/blender/editors/transform/transform_mode_push_pull.c
index 4a2f979ec38..2b17f208e79 100644
--- a/source/blender/editors/transform/transform_mode_push_pull.c
+++ b/source/blender/editors/transform/transform_mode_push_pull.c
@@ -55,7 +55,7 @@ static void applyPushPull(TransInfo *t, const int UNUSED(mval[2]))
distance = t->values[0];
- snapGridIncrement(t, &distance);
+ transform_snap_increment(t, &distance);
applyNumInput(&t->num, &distance);