draw crosshair at end of copy/move ops if enabled

This commit is contained in:
stefan schippers 2023-09-22 13:02:51 +02:00
parent 8f0d920a96
commit eb91c8bbea
1 changed files with 2 additions and 0 deletions

View File

@ -1059,6 +1059,7 @@ void copy_objects(int what)
xctx->rotatelocal=0;
} /* if(what & END) */
draw_selection(xctx->gc[SELLAYER], 0);
if(tclgetboolvar("draw_crosshair")) draw_crosshair(0);
}
@ -1593,4 +1594,5 @@ void move_objects(int what, int merge, double dx, double dy)
xctx->rotatelocal=0;
}
draw_selection(xctx->gc[SELLAYER], 0);
if(tclgetboolvar("draw_crosshair")) draw_crosshair(0);
}