From 451caa7ff4498e52abebe30d52a14fef71697da0 Mon Sep 17 00:00:00 2001 From: Douwe Fokkema Date: Tue, 2 Jul 2019 11:14:10 +0200 Subject: [PATCH] Don't hide radar panel at creation, Mac can't handle this. --- src/RadarPanel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/RadarPanel.cpp b/src/RadarPanel.cpp index d7e41a07..0be34157 100644 --- a/src/RadarPanel.cpp +++ b/src/RadarPanel.cpp @@ -55,8 +55,8 @@ bool RadarPanel::Create() { .BottomDockable(false) .RightDockable(false) .LeftDockable(false) - .CloseButton(true) - .Hide(); + .CloseButton(true); + // .Hide(); don't hide at creation, does not work on Mac m_sizer = new wxBoxSizer(wxHORIZONTAL);