diff --git a/pcbnew/dialogs/dialog_copper_zones.cpp b/pcbnew/dialogs/dialog_copper_zones.cpp index db10961e5e..8a8e0844f1 100644 --- a/pcbnew/dialogs/dialog_copper_zones.cpp +++ b/pcbnew/dialogs/dialog_copper_zones.cpp @@ -662,8 +662,9 @@ void DIALOG_COPPER_ZONE::buildAvailableListOfNets() if( wxNOT_FOUND == selectedNetListNdx ) { // the currently selected net must *always* be visible. - listNetName.Insert( equipot->GetNetname(), 0 ); - selectedNetListNdx = 0; + // is the zero'th index, so pick next lowest + listNetName.Insert( equipot->GetNetname(), 1 ); + selectedNetListNdx = 1; } } }