1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 06:44:38 +01:00

Draw tab outline even if tab is disabled.

This commit is contained in:
Aaron van Geffen
2017-01-29 23:19:46 +01:00
parent 2e84410843
commit d7d7c6d1dc

View File

@@ -293,12 +293,14 @@ static void widget_tab_draw(rct_drawpixelinfo *dpi, rct_window *w, sint32 widget
if (widget->image == -1)
return;
// Check if tab is disabled
if (!widget_is_disabled(w, widgetIndex)) {
widget_draw_image(dpi, w, widgetIndex);
return;
}
// Draw outline.
widget_draw_image(dpi, w, widgetIndex);
// Check if tab is disabled
if (!widget_is_disabled(w, widgetIndex))
return;
// ??? Seems superfluous, as this function is only used to draw tabs.
if (widget->type == WWT_TAB)
return;