Basically the same problem as described in T26485, only for the ImageCropper plugin this time. To reproduce:
- Open any image in the workbench
- Enable PACS mode (Windows -> Preferences -> Editors/Standard Multi Widget -> Use PACS like mouse mode interaction)
- Open the Image Cropper plugin
- Press "New" to create a new bounding box
- Move the edges of the bounding box and see how whatever PACS tool is active acts at the same time
This is because in mitkBoundingShapeInteractor.cpp the methods DisableCrosshairNavigation and EnableCrosshairNavigation only change DisplayInteractors, not DisplayActionEventBroadcasts (see @kalali's comments in T26485).
Additionally, the disabling of crosshair movement is hardcoded for the default MITK interaction behavior and won't cope with something like PACS mode, which requires a more generalized approach as proposed in T26485.