Eeschema: fix sheet properties dialog sheet path bug.
This commit is contained in:
parent
15c2181a89
commit
189792cd4c
|
@ -164,22 +164,19 @@ bool DIALOG_SHEET_PROPERTIES::TransferDataToWindow()
|
||||||
SCH_SHEET_LIST hierarchy = m_frame->Schematic().GetFullHierarchy();
|
SCH_SHEET_LIST hierarchy = m_frame->Schematic().GetFullHierarchy();
|
||||||
SCH_SHEET_PATH instance = m_frame->GetCurrentSheet();
|
SCH_SHEET_PATH instance = m_frame->GetCurrentSheet();
|
||||||
|
|
||||||
|
instance.push_back( m_sheet );
|
||||||
|
|
||||||
wxString nextPageNumber;
|
wxString nextPageNumber;
|
||||||
|
|
||||||
if( m_sheet->IsNew() )
|
if( m_sheet->IsNew() )
|
||||||
{
|
|
||||||
nextPageNumber.Printf( "%d", static_cast<int>( hierarchy.size() ) + 1 );
|
nextPageNumber.Printf( "%d", static_cast<int>( hierarchy.size() ) + 1 );
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
|
||||||
instance.push_back( m_sheet );
|
|
||||||
nextPageNumber = m_sheet->GetPageNumber( instance );
|
nextPageNumber = m_sheet->GetPageNumber( instance );
|
||||||
}
|
|
||||||
|
|
||||||
m_pageNumberTextCtrl->ChangeValue( nextPageNumber );
|
m_pageNumberTextCtrl->ChangeValue( nextPageNumber );
|
||||||
|
|
||||||
// set up the read-only fields
|
// set up the read-only fields
|
||||||
m_heirarchyPath->SetValue( m_frame->GetCurrentSheet().PathHumanReadable() );
|
m_heirarchyPath->SetValue( instance.PathHumanReadable() );
|
||||||
|
|
||||||
Layout();
|
Layout();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue