Sfoglia il codice sorgente

Renaming CT and DMR Nodes

Jan Stefanic 5 anni fa
parent
commit
38eb91d3a1
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      dataExplorer/dataExplorer.py

+ 2 - 0
dataExplorer/dataExplorer.py

@@ -153,12 +153,14 @@ class dataExplorerWidget(ScriptedLoadableModuleWidget):
 
   def onLoadCTButtonClicked(self):
       self.CT=self.loadPatientLogic.loadCT(self.patientId.text)
+      self.CT[0]['node'].SetName(self.patientId.text+"_CT")
 
   def onLoadCTRSButtonClicked(self):
       self.CTRS=self.loadPatientLogic.loadCTRS(self.patientId.text)
 
   def onLoadDMRButtonClicked(self):
       self.DMR=self.loadPatientLogic.loadDMR(self.patientId.text)
+      self.DMR[0]['node'].SetName(self.patientId.text+"_DMR")
 
 #
 # dataExplorerLogic