From 30d9de9db56c579e54b4d834e36e025b1e093d67 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Tue, 11 Oct 2011 13:13:20 +0000 Subject: [PATCH] (svn r23018) -Fix (r14004): Pass bottom of dropdown item rather than bottom of dropdown window. --- src/widgets/dropdown.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/dropdown.cpp b/src/widgets/dropdown.cpp index 56654e6beb..d3dbd3bd82 100644 --- a/src/widgets/dropdown.cpp +++ b/src/widgets/dropdown.cpp @@ -250,7 +250,7 @@ struct DropdownWindow : Window { bool selected = (this->selected_index == item->result); if (selected) GfxFillRect(r.left + 2, y, r.right - 1, y + item_height - 1, PC_BLACK); - item->Draw(r.left, r.right, y, r.bottom, selected, colour); + item->Draw(r.left, r.right, y, y + item_height, selected, colour); if (item->masked) { GfxFillRect(r.left + 1, y, r.right - 1, y + item_height - 1, _colour_gradient[colour][5], FILLRECT_CHECKER);