summaryrefslogtreecommitdiff
path: root/src/widgets/dropdown_type.h
diff options
context:
space:
mode:
authorPeterN <peter1138@openttd.org>2021-04-28 22:32:43 +0100
committerGitHub <noreply@github.com>2021-04-28 22:32:43 +0100
commitae7f07de74a8d242dce8a67eaece26be9d06f064 (patch)
tree0c2328a04f87b10b5e31ab992abdd8bab9668dd9 /src/widgets/dropdown_type.h
parent96dc0d04ecb12ee83909782b9a2c39f336de7d9a (diff)
downloadopenttd-ae7f07de74a8d242dce8a67eaece26be9d06f064.tar.xz
Fix: Incorrect vertical alignment of icon and text in DropDownListIconItem. (#9133)
This happens if the bounding dimensions are changed so that each item is the same size, as happens on the railtype/roadtype dropdown lists, as the vertical offset was calculated before this dimension is changed.
Diffstat (limited to 'src/widgets/dropdown_type.h')
-rw-r--r--src/widgets/dropdown_type.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/widgets/dropdown_type.h b/src/widgets/dropdown_type.h
index a1f240e96..5dfa9ed58 100644
--- a/src/widgets/dropdown_type.h
+++ b/src/widgets/dropdown_type.h
@@ -84,7 +84,6 @@ class DropDownListIconItem : public DropDownListParamStringItem {
PaletteID pal;
Dimension dim;
uint sprite_y;
- uint text_y;
public:
DropDownListIconItem(SpriteID sprite, PaletteID pal, StringID string, int result, bool masked);