| 838 | bool _draw_widget_outlines; |
| 839 | |
| 840 | static void DrawOutline(const Window *, const NWidgetBase *wid) |
| 841 | { |
| 842 | if (!_draw_widget_outlines || wid->current_x == 0 || wid->current_y == 0) return; |
| 843 | |
| 844 | DrawRectOutline(wid->GetCurrentRect(), PC_WHITE, 1, 4); |
| 845 | } |
| 846 | |
| 847 | /** |
| 848 | * @defgroup NestedWidgets Hierarchical widgets |
no test coverage detected