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:
m---------release/scripts/addons0
-rw-r--r--source/blender/editors/interface/interface_widgets.c5
m---------source/tools0
3 files changed, 2 insertions, 3 deletions
diff --git a/release/scripts/addons b/release/scripts/addons
-Subproject 21dee6f89433249dba6573bf1eaa56a8d5b99c3
+Subproject ad6928706de2fa8f44fa35a275453c716d65e77
diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c
index fd2f652d40e..92032c3b18c 100644
--- a/source/blender/editors/interface/interface_widgets.c
+++ b/source/blender/editors/interface/interface_widgets.c
@@ -1742,9 +1742,8 @@ float UI_text_clip_middle_ex(const uiFontStyle *fstyle,
strwidth = BLF_width(fstyle->uifont_id, str, max_len);
if ((okwidth > 0.0f) && (strwidth > okwidth)) {
- /* utf8 two-dots leader '..' (shorter than ellipsis '...'),
- * some compilers complain with real literal string. */
- const char sep[] = {0xe2, 0x80, 0xA5, 0x0};
+ /* Ellipsis. Some compilers complain with real literal string. */
+ const char sep[] = {0xe2, 0x80, 0xA6, 0x0};
const int sep_len = sizeof(sep) - 1;
const float sep_strwidth = BLF_width(fstyle->uifont_id, sep, sep_len + 1);
float parts_strwidth;
diff --git a/source/tools b/source/tools
-Subproject ce943dad8a21b4784e2dcef12d8f893473cddb7
+Subproject 603f076606f052adc97d937633bfeb9b268ec20