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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-04-22 09:15:05 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-04-22 09:15:05 +0300
commit4da050674e2c6a0ecc7d50733f7de8df3e77ee73 (patch)
tree44b853afb82d2f6ce2dc231e5c8a5a6b552b6462 /source/blender
parente1a53b6d52f1ce3598e9e35b96eaab2318aba4ad (diff)
Fix T44470: File Selection sometimes surpresses last Character.
Tweak hack of `file_draw_string()` (there may be better solution, but not worth spending time on this, the whole filebrowser drawing code is to be rewritten anyway).
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_file/file_draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c
index a6f3a73841e..9763efbc7b5 100644
--- a/source/blender/editors/space_file/file_draw.c
+++ b/source/blender/editors/space_file/file_draw.c
@@ -307,10 +307,10 @@ static void file_draw_string(int sx, int sy, const char *string, float width, in
/* no text clipping needed, UI_fontstyle_draw does it but is a bit too strict (for buttons it works) */
rect.xmin = sx;
- rect.xmax = (int)(sx + ceil(width + 4.0f));
+ rect.xmax = (int)(sx + ceil(width + 5.0f / UI_DPI_FAC));
rect.ymin = sy - height;
rect.ymax = sy;
-
+
UI_fontstyle_draw(&fs, &rect, fname);
}