fix regression (Shift-D not working) introduced after `Escape pressed while drawing polygon will cancel last segment instead of the whole poly`
This commit is contained in:
parent
baf80c3092
commit
08c613d3a8
|
|
@ -4250,7 +4250,7 @@ static void handle_button_press(int event, int state, int rstate, KeySym key, in
|
|||
if(end_place_move_copy_zoom()) return;
|
||||
|
||||
/* Button1Press to select objects */
|
||||
if(!excl) {
|
||||
if(!excl && !(xctx->ui_state & STARTSELECT)) {
|
||||
Selected sel;
|
||||
int already_selected = 0;
|
||||
int prev_last_sel = xctx->lastsel;
|
||||
|
|
|
|||
Loading…
Reference in New Issue