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:
authorHans Goudey <h.goudey@me.com>2020-08-04 01:28:39 +0300
committerHans Goudey <h.goudey@me.com>2020-08-04 01:28:39 +0300
commit9de5adc6a1a9cd6ca18ac30180b5d35f16c8b289 (patch)
tree82b2a967b0dedcd7fa6e5ec3cf3028dd93ee3773 /source/blender/blenkernel/intern/unit.c
parentfbc3c1b24ddc6d48ec45e1919113db25e54d6de7 (diff)
Fix: Remove debug print added mistakenly
This print whenever units are evaluated in number input was added in 45dbc38a8b15 mistakenly.
Diffstat (limited to 'source/blender/blenkernel/intern/unit.c')
-rw-r--r--source/blender/blenkernel/intern/unit.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/unit.c b/source/blender/blenkernel/intern/unit.c
index f37feab4b85..efe10b02940 100644
--- a/source/blender/blenkernel/intern/unit.c
+++ b/source/blender/blenkernel/intern/unit.c
@@ -1005,7 +1005,6 @@ bool bUnit_ReplaceString(
/* Fix cases like "-1m50cm" which would evaluate to -0.5m without this. */
changed |= unit_distribute_negatives(str, len_max);
- printf("%s\n", str);
/* Try to find a default unit from current or previous string. */
default_unit = unit_detect_from_str(usys, str, str_prev);