Another attempt to fix the crash-on-selection bug.

Fixes: lp:1842394
* https://bugs.launchpad.net/kicad/+bug/1842394
This commit is contained in:
Jeff Young 2019-09-03 22:28:28 +01:00
parent d4aa502be1
commit 8bbbc66e46
1 changed files with 1 additions and 1 deletions

View File

@ -705,7 +705,7 @@ bool EE_SELECTION_TOOL::selectMultiple()
int layer = pair.second;
for( SCH_SHEET_PIN& pin : sheet->GetPins() )
selectedItems.emplace_back( KIGFX::VIEW::LAYER_ITEM_PAIR( &pin, layer ) );
selectedItems.emplace_back( &pin, layer );
}
}