After a plugin has been moved inside the structure editor, no hook method is called
to inform the plugin that is has been moved inside the tree. This would be very
useful in some situations, for instance to recompute the grid widths, etc.
Implementing this is a no-brainer, just one additional line in
class CMSPlugin(with_metaclass(PluginModelBase, MP_Node)):
...
def move(self):
...
self.get_bound_plugin().after_moved()
...
and an empty stub method after_moved().
Shall I implement this? Any objections about the name after_moved?
– Jacob