commit 077fcf5758ed6038bfe6e7aee1e407aa02e807b2
parent 50e62f2dd97690912880fdf6549097f9a16cbd23
Author: falkTX <falktx@falktx.com>
Date: Mon, 6 May 2024 00:37:27 +0200
Add missing StandaloneWindow::repaint override
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/dgl/StandaloneWindow.hpp b/dgl/StandaloneWindow.hpp
@@ -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); }