From 59ff0d801a4d27921f6aeccb5406084eb2cdecd5 Mon Sep 17 00:00:00 2001 From: David Capello Date: Tue, 19 Nov 2024 14:16:07 -0300 Subject: [PATCH] Add missing call to Widget::onVisible() This is not necessary at the moment but just in case if in the future we add a signal or Widget::onVisible() starts doing something. --- src/ui/window.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/window.cpp b/src/ui/window.cpp index ab0a92116..5d08d6232 100644 --- a/src/ui/window.cpp +++ b/src/ui/window.cpp @@ -716,6 +716,7 @@ void Window::onSetText() void Window::onVisible(bool visible) { + Widget::onVisible(visible); if (get_multiple_displays() && m_display) { display()->nativeWindow()->setVisible(visible); }