xschem show_unconnected_pins: hilight unconnecteds even if netlist not extrated or hilights cleared after netlisting

This commit is contained in:
stefan schippers 2025-09-07 15:42:43 +02:00
parent 458de325cc
commit b72c6885b9
1 changed files with 6 additions and 0 deletions

View File

@ -1548,6 +1548,12 @@ void show_unconnected_pins(void)
select_element(i, SELECTED, 1, 0);
}
rebuild_selected_array();
if(xctx->prep_net_structs == 0) {
prepare_netlist_structs(1);
}
if(xctx->hilight_nets == 0) {
traverse_node_hash();
}
attach_labels_to_inst(2);
unselect_all(1);
}