| 52 | class BootstrapBackground : public Window { |
| 53 | public: |
| 54 | BootstrapBackground() : Window(_background_desc) |
| 55 | { |
| 56 | this->InitNested(0); |
| 57 | this->flags.Reset(WindowFlag::WhiteBorder); |
| 58 | ResizeWindow(this, _screen.width, _screen.height); |
| 59 | } |
| 60 | |
| 61 | void DrawWidget(const Rect &r, WidgetID) const override |
| 62 | { |
nothing calls this directly
no test coverage detected