From d0bc84bcbf5329ed943325b3a3bbec1544353e69 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 19 Apr 2019 00:41:33 +0100 Subject: [PATCH] Don't allow legacy and modern toolset to fight over moving objects. Fixes: lp:1825427 * https://bugs.launchpad.net/kicad/+bug/1825427 --- eeschema/edit_label.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/eeschema/edit_label.cpp b/eeschema/edit_label.cpp index cadd718ddb..c8327e8693 100644 --- a/eeschema/edit_label.cpp +++ b/eeschema/edit_label.cpp @@ -117,9 +117,6 @@ SCH_TEXT* SCH_EDIT_FRAME::CreateNewText( int aType ) if( textItem->Type() == SCH_GLOBAL_LABEL_T || textItem->Type() == SCH_HIER_LABEL_T ) lastGlobalLabelShape = textItem->GetShape(); - // Prepare display to move the new item - PrepareMoveItem( textItem ); - return textItem; }