From 04ca28a6e078f061b2bd312b02c7823e849fe164 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Wed, 19 Aug 2020 14:41:00 +1000 Subject: Fix T77300: Some scientific notation evaluation has incorrect results Ref D7922 --- source/blender/blenkernel/intern/unit.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source/blender/blenkernel/intern/unit.c b/source/blender/blenkernel/intern/unit.c index efe10b02940..c702a98f5e6 100644 --- a/source/blender/blenkernel/intern/unit.c +++ b/source/blender/blenkernel/intern/unit.c @@ -757,7 +757,6 @@ static char *find_next_op(const char *str, char *remaining_str, int len_max) if (ch_is_op(remaining_str[i])) { if (scientific_notation) { scientific_notation = false; - continue; } /* Make sure we don't look backwards before the start of the string. */ -- cgit v1.2.3