From 44cbe7a9fc712ed635467683f7ccdf9dc0aaf0b5 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Mon, 26 May 2025 21:18:26 +0200 Subject: [PATCH] if selecting an element in stretch mode ("y" key) attached nets will also be (partially) selected. However allow to descend into instance. --- src/actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions.c b/src/actions.c index 15ed03c8..a6bf8d4d 100644 --- a/src/actions.c +++ b/src/actions.c @@ -2329,7 +2329,7 @@ int descend_schematic(int instnumber, int fallback, int alert, int set_title) return 0; } rebuild_selected_array(); - if(xctx->lastsel !=1 || xctx->sel_array[0].type!=ELEMENT) { + if(/* xctx->lastsel !=1 || */ xctx->sel_array[0].type!=ELEMENT) { dbg(1, "descend_schematic(): wrong selection\n"); return 0; }