Browse Source

Add missing StandaloneWindow::repaint override

Signed-off-by: falkTX <falktx@falktx.com>
web-ui
falkTX 1 year ago
parent
commit
5f731610c8
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      dgl/StandaloneWindow.hpp

+ 1
- 0
dgl/StandaloneWindow.hpp View File

@@ -73,6 +73,7 @@ public:
uint getHeight() const noexcept { return Window::getHeight(); }
const Size<uint> getSize() const noexcept { return Window::getSize(); }
void repaint() noexcept { Window::repaint(); }
void repaint(const Rectangle<uint>& rect) noexcept { Window::repaint(rect); }
void setWidth(uint width) { Window::setWidth(width); }
void setHeight(uint height) { Window::setHeight(height); }
void setSize(uint width, uint height) { Window::setSize(width, height); }


Loading…
Cancel
Save