From 2f18ec973db48cd76704fc81d886c623c22da846 Mon Sep 17 00:00:00 2001 From: Alex Shvartzkop Date: Wed, 18 Mar 2026 15:25:33 +0300 Subject: [PATCH] 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 --- kicad/kicad_manager_frame.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/kicad/kicad_manager_frame.cpp b/kicad/kicad_manager_frame.cpp index eedfd54b9a..6a982f263f 100644 --- a/kicad/kicad_manager_frame.cpp +++ b/kicad/kicad_manager_frame.cpp @@ -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(); }