Page MenuHomePhabricator

Workbench crashes when closing data details dialogue
Closed, ResolvedPublic

Description

OS: Windows
MITK version: current develop

How to reproduce:

  1. load some data
  2. right click on the data in data manager
  3. select "show details"
  4. close the dialogue

crash due to some problem in the QmitkDataStorageCombobox

Revisions and Commits

rMITK MITK
Restricted Differential Revision
Restricted Differential Revision
Restricted Differential Revision

Event Timeline

floca triaged this task as Unbreak Now! priority.Mar 1 2024, 9:18 AM
floca created this task.
floca updated the task description. (Show Details)
kislinsk added a subscriber: kislinsk.

The dialog subscribes to events from its child QmitkDataStorageComboBox. During destruction, for some reason the dialog instance is invalidated before its children are completely destructed, leaving the last event from the combo box without a valid recipient. To fix, we can explicitly disconnect the according signal in the dialog destructor.

kislinsk added a revision: Restricted Differential Revision.Mar 12 2024, 9:26 AM

Deleted branch from rMITK MITK: bugfix/T30342-FixDetailsDialog.