From f663a6486d21b3f941f12353b26202be8ef90ab2 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Wed, 6 Mar 2024 12:58:29 +0100 Subject: [PATCH] intuitive_interface: if clicking without shift all other selected objects will be unselected --- src/callback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callback.c b/src/callback.c index b52f06a7..7b3caaca 100644 --- a/src/callback.c +++ b/src/callback.c @@ -3394,7 +3394,7 @@ int rstate; /* (reduced state, without ShiftMask) */ if(!xctx->intuitive_interface && no_shift_no_ctrl ) unselect_all(1); sel = find_closest_obj(xctx->mousex, xctx->mousey, 0); - if(xctx->intuitive_interface && !sel.type && no_shift_no_ctrl ) unselect_all(1); + if(xctx->intuitive_interface && /* !sel.type && */ no_shift_no_ctrl ) unselect_all(1); switch(sel.type) {