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:
parent
c07367821e
commit
e4c108ee3a
|
@ -265,7 +265,11 @@ void DIALOG_BOARD_REANNOTATE::OnApplyClick( wxCommandEvent& event )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if( ReannotateBoard() )
|
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->SetLazyUpdate( false );
|
||||||
m_MessageWindow->Flush( false );
|
m_MessageWindow->Flush( false );
|
||||||
|
|
Loading…
Reference in New Issue