Sometimes when I execute a multipoint edit, I select many points, for example 1000 points, but only have 999 lines on clipborad, this will cause a high CPU problem and a bad result.
I want to write a plugin to check if len(edit_points) == len(clipborad.split("\n"))
, and warn/prevent paste before it really do it, but can’t find an API function similar to ''on_paste" or “on_pre_modified”, and not sure which function do things like “len(edit_points)”.
Please help, thanks!