From 4c0ceb8900f6c12ab9b66e2ae6e7d1077c99c409 Mon Sep 17 00:00:00 2001 From: Csaba Pinter Date: Mon, 13 Feb 2023 15:18:04 +0000 Subject: [PATCH] ENH: Hide additional device models section until reinstated Re #218 --- RoomsEyeView/qSlicerRoomsEyeViewModuleWidget.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RoomsEyeView/qSlicerRoomsEyeViewModuleWidget.cxx b/RoomsEyeView/qSlicerRoomsEyeViewModuleWidget.cxx index b17fd397..79e2fffd 100644 --- a/RoomsEyeView/qSlicerRoomsEyeViewModuleWidget.cxx +++ b/RoomsEyeView/qSlicerRoomsEyeViewModuleWidget.cxx @@ -307,6 +307,9 @@ void qSlicerRoomsEyeViewModuleWidget::setup() connect(d->SegmentSelectorWidget_PatientBody, SIGNAL(currentNodeChanged(vtkMRMLNode*)), this, SLOT(onPatientBodySegmentationNodeChanged(vtkMRMLNode*))); connect(d->SegmentSelectorWidget_PatientBody, SIGNAL(currentSegmentChanged(QString)), this, SLOT(onPatientBodySegmentChanged(QString))); + //TODO: Hide additional device models section until reinstated + d->AdditionalTreatmentModelsCollapsibleButton->setVisible(false); + // Handle scene change event if occurs qvtkConnect(d->logic(), vtkCommand::ModifiedEvent, this, SLOT(onLogicModified())); }