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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-06-30 12:57:39 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-06-30 12:57:39 +0400
commitcadf77d5ef97935885802d1841184d9a044d2249 (patch)
tree69c10f127a46b5358128ae48bd116e732f7e169c /source/blender/editors/include/ED_numinput.h
parent61e1ea382b84c1c1d3cd4c03da37fa4c282ea1d4 (diff)
Fix T40862: numinput transform did not take into account scale_length.
Diffstat (limited to 'source/blender/editors/include/ED_numinput.h')
-rw-r--r--source/blender/editors/include/ED_numinput.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_numinput.h b/source/blender/editors/include/ED_numinput.h
index e7b52a49e8c..4e96ed0c7e7 100644
--- a/source/blender/editors/include/ED_numinput.h
+++ b/source/blender/editors/include/ED_numinput.h
@@ -76,7 +76,7 @@ enum {
*/
void initNumInput(NumInput *n);
-void outputNumInput(NumInput *n, char *str);
+void outputNumInput(NumInput *n, char *str, const float scale_length);
bool hasNumInput(const NumInput *n);
bool applyNumInput(NumInput *n, float *vec);
bool handleNumInput(struct bContext *C, NumInput *n, const struct wmEvent *event);