diff --git a/pcbnew/dialogs/dialog_board_reannotate.cpp b/pcbnew/dialogs/dialog_board_reannotate.cpp index 789a3fea94..03534c23a2 100644 --- a/pcbnew/dialogs/dialog_board_reannotate.cpp +++ b/pcbnew/dialogs/dialog_board_reannotate.cpp @@ -265,7 +265,11 @@ void DIALOG_BOARD_REANNOTATE::OnApplyClick( wxCommandEvent& event ) return; if( ReannotateBoard() ) - ShowReport( _( "PCB and schematic successfully reannotated" ), RPT_SEVERITY_ACTION ); + { + ShowReport( _( "PCB successfully reannotated" ), RPT_SEVERITY_ACTION ); + ShowReport( _( "PCB annotation changes should be synchronized with schematic using " + "the \"Update PCB from Schematic\" tool." ), RPT_SEVERITY_WARNING ); + } m_MessageWindow->SetLazyUpdate( false ); m_MessageWindow->Flush( false );