1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-30 10:15:36 +01:00

Fix #21330: Tooltips from dropdown widgets have the wrong position

This commit is contained in:
Matt
2024-02-10 19:47:40 +02:00
committed by GitHub
parent 0c1991c004
commit c8b28ca457
2 changed files with 6 additions and 0 deletions

View File

@@ -1463,6 +1463,11 @@ void InputStateWidgetPressed(
}
return;
}
else if (gDropdownIsColour)
{
// This is ordinarily covered in InputWidgetOver but the dropdown with colours is a special case.
InputUpdateTooltip(w, widgetIndex, screenCoords);
}
gDropdownHighlightedIndex = -1;
WindowInvalidateByClass(WindowClass::Dropdown);