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.
This commit is contained in:
Wayne Stambaugh 2021-06-29 15:17:00 -04:00
parent c07367821e
commit e4c108ee3a
1 changed files with 5 additions and 1 deletions

View File

@ -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 );