Fix #36038: Auto Keying warning message is clamped in Japanese

This commit is contained in:
Sv. Lockal 2013-07-06 20:42:24 +00:00
parent 96953c748f
commit 862f695d1c

@ -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... */