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:
authorCampbell Barton <ideasman42@gmail.com>2013-03-04 08:21:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-04 08:21:51 +0400
commit24da4a6032543e3bdae5960e8b956caa25b38aae (patch)
tree413fa05306ca964d15c54e39b55f619a858e7696 /source/blender/blenlib/BLI_string.h
parentc2157518de1ff81e5f8f2842bb13ef49de8f635c (diff)
fix [#34490] Copy and paste floating point number fields losses precision
- copy now gets up to 6 decimal places - copy and UI float button editing now strip zeros: 1.000 -> 1.0
Diffstat (limited to 'source/blender/blenlib/BLI_string.h')
-rw-r--r--source/blender/blenlib/BLI_string.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_string.h b/source/blender/blenlib/BLI_string.h
index 70c89773f02..603831246ac 100644
--- a/source/blender/blenlib/BLI_string.h
+++ b/source/blender/blenlib/BLI_string.h
@@ -226,6 +226,11 @@ void BLI_ascii_strtoupper(char *str, const size_t len)
__attribute__((nonnull))
#endif
;
+int BLI_str_rstrip_float_zero(char *str, const char pad)
+#ifdef __GNUC__
+__attribute__((nonnull))
+#endif
+;
#ifdef __cplusplus
}