Sequences module GUI does not update when modified

I used the Crop Volume Sequence module to create a new cropped version of a volume sequence. This worked fine, but the resulting sequence is not listed in the Sequences module, despite it clearly having been added to the original sequence browser as a synchronized sequence (because changing the frame in the browser changes the frame in the cropped sequence). I can’t figure out how to get the GUI to update to reflect the current state. From general experience with Slicer I suspect that a “somethingModified” event was not fired somewhere, but I don’t know where or how to trigger it myself if the Crop Volume Sequence module missed it. Any suggestions?

Getting the browserNode and calling browserNode.Modified() didn’t do it. It seems like the Sequences module is CLI style, which I understand less well, and doesn’t seem to have the equivalent to an updateGUIFromParameterNode() function, which was another idea I thought to try.

Sequences module GUI refresh was very expensive, which slowed down sequence replay. Therefore, (years ago) the code was reworked to minimize the number of updates, and as a side effect, in some cases changes that should be detected and cause a GUI update may be missed. If you can provide a list of steps that we can follow to reproduce the issue then we can have a look.

Thanks!

Here are the steps I followed:

  1. Load a volume sequence
  2. Open Crop Volume Sequence module
    1. Select volume sequence as input
    2. Select “Create new sequence” for output
    3. Click to jump to Crop Volume module
  3. In Crop Volume module,
    1. select proxy volume as input
    2. Select “Create new MarkupsROI”
    3. Click “Fit to Volume”
    4. Manually adjust boundaries to desired location
    5. Choose “Create new volume” as output (I think this was unnecessary)
  4. Go back to Crop Volume Sequence module and ensure that “CropVolumeParameters” was selected
  5. Click “Apply”

After this process, the new cropped volume sequence was created (as well as an invalid scalar volume that I think was due to my choice of “Create new volume” as output in the Crop Volume module). The output sequence is named “Sequence”, is automatically displayed in the slice views, and changes with the frame change of the previously existing sequence browser. So far, this is all exactly what I want to happen, but if I go to the Sequences module, the new Sequence is not listed in the list of synchronized nodes, so I can’t, for example, change whether I want the sequence proxy node to be renamed with frame changes (I don’t in this case) or whether I want to “save changes” in the proxy node into the sequence node (I do).

Let me know if you have any trouble reproducing.