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:
authorMartin Poirier <theeth@yahoo.com>2010-01-22 01:20:49 +0300
committerMartin Poirier <theeth@yahoo.com>2010-01-22 01:20:49 +0300
commit52858b7e66000b2784f6ff92d6e3d90d1038c8b9 (patch)
tree2455fb897c3694640b8284cbd2fa64cd72ce8c96 /source/blender/editors/transform/transform.c
parentb400703403dd87c482824a1b10f40923c67412e4 (diff)
[#20700] Transformation Increments
Patch by Jonathan Smith When using numerical input, up and down arrow keys increment and decrement the value by the transform increment amount (grid for grab and so on).
Diffstat (limited to 'source/blender/editors/transform/transform.c')
-rw-r--r--source/blender/editors/transform/transform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index 5e833708751..864c816a8f4 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -954,7 +954,7 @@ int transformEvent(TransInfo *t, wmEvent *event)
}
// Numerical input events
- t->redraw |= handleNumInput(&(t->num), event);
+ t->redraw |= handleNumInput(&(t->num), event, t->snap[1]);
// NDof input events
switch(handleNDofInput(&(t->ndof), event))