changeset 20422:bbd727665718 draft

(svn r25380) -Fix (r25344): Vertically center images of page elements in the available vertical space
author zuu <zuu@openttd.org>
date Sun, 09 Jun 2013 14:11:55 +0000
parents 2792f7b31b38
children ec21978a9081
files src/story_gui.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/story_gui.cpp
+++ b/src/story_gui.cpp
@@ -379,7 +379,7 @@
 		uint sprite_top = y_offset + (element_height - sprite_dim.height) / 2;
 		uint text_top = y_offset + (element_height - line_height) / 2;
 
-		DrawSprite(action_sprite, PAL_NONE, 0, y_offset);
+		DrawSprite(action_sprite, PAL_NONE, 0, sprite_top);
 		DrawString(sprite_dim.width + WD_FRAMETEXT_LEFT, width, text_top, STR_JUST_RAW_STRING, TC_BLACK);
 
 		y_offset += element_height;