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:
authorSv. Lockal <lockalsash@gmail.com>2013-07-07 00:42:24 +0400
committerSv. Lockal <lockalsash@gmail.com>2013-07-07 00:42:24 +0400
commit862f695d1c64e5ffbdc1dafb7aa3fa5daed1136c (patch)
treed488bb958813cb5bf46aad58c0974f5555ca9b9e /source/blender/editors
parent96953c748f06a3cc6725d9a1d0927c46d50aed2b (diff)
Fix #36038: Auto Keying warning message is clamped in Japanese
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/transform/transform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index 5ad5636bb21..bf81e0ac766 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -1676,9 +1676,9 @@ static void drawAutoKeyWarning(TransInfo *UNUSED(t), ARegion *ar)
*/
UI_ThemeColorShade(TH_TEXT_HI, -50);
#ifdef WITH_INTERNATIONAL
- BLF_draw_default(xco, ar->winy - 17, 0.0f, printable, sizeof(printable));
+ BLF_draw_default(xco, ar->winy - 17, 0.0f, printable, BLF_DRAW_STR_DUMMY_MAX);
#else
- BLF_draw_default_ascii(xco, ar->winy - 17, 0.0f, printable, sizeof(printable));
+ BLF_draw_default_ascii(xco, ar->winy - 17, 0.0f, printable, BLF_DRAW_STR_DUMMY_MAX);
#endif
/* autokey recording icon... */