recogito-client-plugins
recogito-client-plugins copied to clipboard
BetterPolygon: handle deletion conflicts with annotation deletion
Hi, I would like to handle both deletion of an handle and the deletion of the whole selection but they conflict with each others. The solution I am thinking of is testing if an handle is selected when delete action is caught and ignore selection deletion to let BetterPolygon catch the delete event. The problem is that I don't know how to access if an handle is selected from the Annotorious object. Is there a way to access it ?
Hi @AlexMili,
a fix for this is underway - hopefully coming on the weekend. (For some background on the issue, you can check this PR, which is closed - although it only fixes part of the issue so far.)
Cheers, R
Thank you ! I will look closely the upcoming fixes :)
That's now fixed. Requires both the latest version of Annotorious (2.7.5) & the BetterPolygon plugin (0.2.0) to work.
Works fine for the point deletion thank you :) When I try to delete a point from a triangle the whole selection is deleted and the problem from recogito/annotorious#221 comes back. I don't know if this is intended but maybe the fact that when there are two points remaining, the selection is completely deleted should be documented.
Argh - yes, of course. It shouldn't delete on triangles, because that would (essentially) create an invalid polygon. I didn't test for that case... I think the desired behavior would be to simply do nothing, i.e. not delete the point; but don't delete the polygon either. What do you think?
(Meanwhile, I'll re-open the ticket.)