The screen for undo is the screen that *owns* the SCH_SHEET...
... not the screen the SCH_SHEET owns.
Fixes https://gitlab.com/kicad/code/kicad/issues/14099
(cherry picked from commit 5849458476
)
This commit is contained in:
parent
6116eebbad
commit
f5b0e20f78
|
@ -290,8 +290,11 @@ void HIERARCHY_PANE::onRightClick( wxTreeEvent& aEvent )
|
||||||
|
|
||||||
if( dlg.ShowModal() == wxID_OK && dlg.GetValue() != itemData->m_SheetPath.GetPageNumber() )
|
if( dlg.ShowModal() == wxID_OK && dlg.GetValue() != itemData->m_SheetPath.GetPageNumber() )
|
||||||
{
|
{
|
||||||
m_frame->SaveCopyInUndoList( itemData->m_SheetPath.LastScreen(),
|
SCH_SHEET_PATH parentPath = itemData->m_SheetPath;
|
||||||
itemData->m_SheetPath.Last(), UNDO_REDO::CHANGED, false );
|
parentPath.pop_back();
|
||||||
|
|
||||||
|
m_frame->SaveCopyInUndoList( parentPath.LastScreen(), itemData->m_SheetPath.Last(),
|
||||||
|
UNDO_REDO::CHANGED, false );
|
||||||
|
|
||||||
itemData->m_SheetPath.SetPageNumber( dlg.GetValue() );
|
itemData->m_SheetPath.SetPageNumber( dlg.GetValue() );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue