summaryrefslogtreecommitdiff
path: root/plugingui/window.cc
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/window.cc')
-rw-r--r--plugingui/window.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugingui/window.cc b/plugingui/window.cc
index 2d5f282..a38eeea 100644
--- a/plugingui/window.cc
+++ b/plugingui/window.cc
@@ -51,6 +51,10 @@ Window::Window(void* native_window)
: Widget(nullptr)
, wpixbuf(1, 1)
{
+ // Defaults to true for widgets but the window should be considered invisble
+ // until show is called.
+ _visible = false;
+
// Make sure we have a valid size when initialising the NativeWindow
_width = wpixbuf.width;
_height = wpixbuf.height;