From b0b9c5ab63ac505c5e49fee6193722b5bf4cb6ca Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 9 Jul 2019 16:53:24 +0100 Subject: [PATCH] Fix copy/paste error. --- pcbnew/tools/edit_tool.cpp | 2 +- pcbnew/tools/position_relative_tool.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pcbnew/tools/edit_tool.cpp b/pcbnew/tools/edit_tool.cpp index 8ecd373395..07830910e6 100644 --- a/pcbnew/tools/edit_tool.cpp +++ b/pcbnew/tools/edit_tool.cpp @@ -1296,7 +1296,7 @@ bool EDIT_TOOL::pickCopyReferencePoint( VECTOR2I& aP ) bool picking = true; bool retVal = true; - frame()->PushTool( _( "Select reference point for the copy..." ) ); + frame()->PushTool( "pcbnew.InteractiveEdit.selectReferencePoint" ); statusPopup.SetText( _( "Select reference point for the copy..." ) ); picker->Activate(); diff --git a/pcbnew/tools/position_relative_tool.cpp b/pcbnew/tools/position_relative_tool.cpp index 41e0e25a6f..c9e511c951 100644 --- a/pcbnew/tools/position_relative_tool.cpp +++ b/pcbnew/tools/position_relative_tool.cpp @@ -128,7 +128,7 @@ int POSITION_RELATIVE_TOOL::SelectPositionRelativeItem( const TOOL_EVENT& aEvent STATUS_TEXT_POPUP statusPopup( frame() ); bool picking = true; - frame()->PushTool( _( "Select reference item..." ) ); + frame()->PushTool( "pcbnew.PositionRelative.selectReferenceItem" ); statusPopup.SetText( _( "Select reference item..." ) ); picker->Activate();