From 3ccbe7cd711375546d8a2a143cd91284bac005e9 Mon Sep 17 00:00:00 2001 From: Sergii Pylypenko Date: Mon, 26 Jun 2017 22:58:41 +0300 Subject: [PATCH] Fixed dropdown scrollbar --- src/widgets/dropdown.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widgets/dropdown.cpp b/src/widgets/dropdown.cpp index 985bbe38bd..4669f8fd6c 100644 --- a/src/widgets/dropdown.cpp +++ b/src/widgets/dropdown.cpp @@ -373,6 +373,7 @@ void ShowDropDownListAt(Window *w, const DropDownList *list, int selected, int b /* Check if the status bar is visible, as we don't want to draw over it */ int screen_bottom = GetMainViewBottom(); + screen_bottom = _screen.height; /* We will draw over the status bar without a second thought on Android */ bool scroll = false; /* Check if the dropdown will fully fit below the widget */