From d82522304c281bf99ff94de68a9dbffe46129502 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Wed, 29 May 2024 19:53:20 +0100 Subject: [PATCH] Improve clarity. --- eeschema/tools/ee_selection_tool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/tools/ee_selection_tool.cpp b/eeschema/tools/ee_selection_tool.cpp index cd27e95e3e..1272537e90 100644 --- a/eeschema/tools/ee_selection_tool.cpp +++ b/eeschema/tools/ee_selection_tool.cpp @@ -631,9 +631,9 @@ int EE_SELECTION_TOOL::Main( const TOOL_EVENT& aEvent ) // drag_is_move option exists only in schematic editor, not in symbol editor // (m_frame->eeconfig() returns nullptr in Symbol Editor) if( m_isSymbolEditor || m_frame->eeconfig()->m_Input.drag_is_move ) - m_toolMgr->RunSynchronousAction( EE_ACTIONS::move, nullptr ); + m_toolMgr->RunAction( EE_ACTIONS::move ); else - m_toolMgr->RunSynchronousAction( EE_ACTIONS::drag, nullptr ); + m_toolMgr->RunAction( EE_ACTIONS::drag ); } else {