Fix mismatch in strings length compute in filebrowser, leading to annoying '...' in longest filename.

We must take kerning into account everywhere! Note this will disappear in upcomming filebrowser
refactor anyway.

Reported through IRC by Pablo (venomgfx), thanks.
This commit is contained in:
2015-05-27 17:15:48 +02:00
parent be4d34ca86
commit c5a8a4e9d8
3 changed files with 18 additions and 2 deletions

View File

@@ -973,6 +973,10 @@ float UI_text_clip_middle_ex(
{
float strwidth;
/* Add some epsilon to OK width, avoids 'ellipsing' text that nearly fits!
* Better to have a small piece of the last char cut out, than two remaining chars replaced by an allipsis... */
okwidth += 1.0f + UI_DPI_FAC;
BLI_assert(str[0]);
/* need to set this first */