Skip to content

Commit

Permalink
Don't hide radar panel at creation, Mac can't handle this.
Browse files Browse the repository at this point in the history
  • Loading branch information
douwefokkema committed Jul 2, 2019
1 parent bd58156 commit 451caa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/RadarPanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 451caa7

Please sign in to comment.