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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-07-10 22:10:40 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-07-10 22:10:40 +0400
commitc7e308367a6d1ed7db914e35d0660b6afa44456d (patch)
treeb7c563529b1b957ed33ac992e5aa7bdc3e01489c /source/blender/editors/space_text
parent64f300ccf4ffa687b196b111b91682d8a50d0069 (diff)
2.5:
* Fix missing update when browsing to different text. * Fix wrong spacing in font size 15 drawing in the text editor. * Fix numbers not updating in color picker buttons.
Diffstat (limited to 'source/blender/editors/space_text')
-rw-r--r--source/blender/editors/space_text/text_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_text/text_draw.c b/source/blender/editors/space_text/text_draw.c
index 48c14804b13..f58af47a6bd 100644
--- a/source/blender/editors/space_text/text_draw.c
+++ b/source/blender/editors/space_text/text_draw.c
@@ -101,7 +101,7 @@ static int text_font_draw_character(SpaceText *st, int x, int y, char c)
int text_font_width_character(SpaceText *st)
{
// XXX need quick BLF function, or cache it somewhere
- return (st->lheight == 12)? 7: 8;
+ return (st->lheight == 12)? 7: 9;
}
int text_font_width(SpaceText *st, char *str)