From e4c108ee3aaa93b12634481f082bdb63576de39a Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Tue, 29 Jun 2021 15:17:00 -0400 Subject: [PATCH] Pcbnew: minor geographical annotation dialog user message improvements. Remove schematic from the completion message as it can no longer be updated though the dialog. Add a warning to synchronize the schematic with the annotation changes. --- pcbnew/dialogs/dialog_board_reannotate.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 );