From 93fe44a3c561e357313af0f8332a697b46812474 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 21 Mar 2009 19:31:47 +0000 Subject: (svn r15783) -Codechange: make the dropdown draw code pass around the left/right instead of the x and width to make drawing text at offsets easier. --- src/gfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gfx.cpp') diff --git a/src/gfx.cpp b/src/gfx.cpp index 670f591e1..ee6c33d0a 100644 --- a/src/gfx.cpp +++ b/src/gfx.cpp @@ -342,7 +342,7 @@ static int TruncateString(char *str, int maxw) if (IsPrintable(c)) { w += GetCharacterWidth(size, c); - if (w >= maxw) { + if (w > maxw) { /* string got too big... insert dotdotdot, but make sure we do not * print anything beyond the string termination character. */ for (int i = 0; *ddd_pos != '\0' && i < 3; i++, ddd_pos++) *ddd_pos = '.'; -- cgit v1.2.3-54-g00ecf