(svn r7058) -Codechange: Truncate text in window captions
authorpeter1138
Fri, 03 Nov 2006 23:29:24 +0000
changeset 5017 3df5ce293696
parent 5016 abe2d67ce392
child 5018 479eff76269a
(svn r7058) -Codechange: Truncate text in window captions
widget.c
--- a/widget.c	Fri Nov 03 23:06:54 2006 +0000
+++ b/widget.c	Fri Nov 03 23:29:24 2006 +0000
@@ -455,7 +455,7 @@
 				GfxFillRect(r.left+2, r.top+2, r.right-2, r.bottom-2, _colour_gradient[_player_colors[w->caption_color]][4]);
 			}
 
-			DrawStringCentered( (r.left+r.right+1)>>1, r.top+2, wi->data, 0x84);
+			DrawStringCenteredTruncated(r.left + 2, r.right - 2, r.top+2, wi->data, 0x84);
 draw_default:;
 			if (IsWidgetDisabled(wi)) {
 				GfxFillRect(r.left+1, r.top+1, r.right-1, r.bottom-1, _colour_gradient[wi->color&0xF][2] | PALETTE_MODIFIER_GREYOUT);