Don't raise KICAD_MANAGER_FRAME in ctor.

There's no point trying to raise a window before showing.

This triggered the wx issue https://github.com/wxWidgets/wxWidgets/issues/25348
This commit is contained in:
Alex Shvartzkop
2026-03-18 15:25:33 +03:00
parent 8b2cb94cb1
commit 2f18ec973d
-3
View File
@@ -300,9 +300,6 @@ KICAD_MANAGER_FRAME::KICAD_MANAGER_FRAME( wxWindow* parent, const wxString& titl
m_acceptedExts.emplace( FILEEXT::DrillFileExtension, &KICAD_MANAGER_ACTIONS::viewDroppedGerbers );
DragAcceptFiles( true );
// Ensure the window is on top
Raise();
}