From e48d746bbb387aaed58f886259e9d0268f361d4b Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Wed, 25 Jun 2025 15:51:53 -0600 Subject: [PATCH] Must show a dialog for it to be useful. --- eeschema/tools/sch_drawing_tools.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eeschema/tools/sch_drawing_tools.cpp b/eeschema/tools/sch_drawing_tools.cpp index aa46584295..304295f732 100644 --- a/eeschema/tools/sch_drawing_tools.cpp +++ b/eeschema/tools/sch_drawing_tools.cpp @@ -1580,6 +1580,7 @@ int SCH_DRAWING_TOOLS::SingleClickPlace( const TOOL_EVENT& aEvent ) strokeItems.push_back( previewItem ); DIALOG_WIRE_BUS_PROPERTIES dlg( m_frame, strokeItems ); + dlg.ShowModal(); break; } @@ -1589,6 +1590,7 @@ int SCH_DRAWING_TOOLS::SingleClickPlace( const TOOL_EVENT& aEvent ) junctions.push_back( static_cast( previewItem ) ); DIALOG_JUNCTION_PROPS dlg( m_frame, junctions ); + dlg.ShowModal(); break; }