From 3fac387e62d4673998ed3b8b41dd1900b794d055 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Sun, 3 Mar 2024 12:34:15 +0100 Subject: [PATCH] Intuitive interface: do not start move operations if clicking with SHift key pressed. Too many side effects. --- src/callback.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/callback.c b/src/callback.c index f7d7a15d..b753b990 100644 --- a/src/callback.c +++ b/src/callback.c @@ -3250,8 +3250,8 @@ int rstate; /* (reduced state, without ShiftMask) */ if( state == ControlMask && !tclgetboolvar("enable_stretch")) { select_attached_nets(); /* stretch nets that land on selected instance pins */ } - if(state == ShiftMask) xctx->connect_by_kissing = 2; - move_objects(START,0,0,0); + /* if(state == ShiftMask) xctx->connect_by_kissing = 2; */ + move_objects(START,0,0,0); } #ifndef __unix__