Import 2017-06-07 23:51:09: master 1308f47c

Author Committer Branch Timestamp Parent
lassoan lassoan master 2015-07-15 00:10:47 master 6d100948
Changeset

BUG: Fixed node selector node type specification syntax

There was a common syntax error in defining single-element Qt string lists in Python.

The correct way of defining a single element list:
self.outputSelector.nodeTypes = ["vtkMRMLScalarVolumeNode"]

The correct way of defining a single element tuple:
self.outputSelector.nodeTypes = "vtkMRMLScalarVolumeNode",

Currently many modules try to define a single-element tuple like this:
self.outputSelector.nodeTypes = ( ("vtkMRMLScalarVolumeNode"), "" ) => this is long and ugly and also incorrect, as the tuple has actually two elements, "vtkMRMLScalarVolumeNode" and an empty element; the empty element generates the dysfunctional "Create new node" and "Create new node as..." options.

The syntax error is fixed in all modules and a check was added to ignore empty elements in the node type list (in case the syntax error occurs again in the future).

git-svn-id: http://svn.slicer.org/Slicer4/trunk@24409 3bd1e089-480b-0410-8dfb-8563597acbee

mod - Extensions/Testing/ScriptedLoadableExtensionTemplate/ScriptedLoadableModuleTemplate/ScriptedLoadableModuleTemplate.py Diff File
mod - Libs/MRML/Widgets/qMRMLNodeComboBox.cxx Diff File
mod - Modules/Scripted/EditorLib/HelperBox.py Diff File
mod - Modules/Scripted/EditorLib/LabelCreateDialog.py Diff File
mod - Modules/Scripted/FiberBundleToLabelMap/FiberBundleToLabelMap.py Diff File
mod - Modules/Scripted/LabelStatistics/LabelStatistics.py Diff File
mod - Modules/Scripted/SurfaceToolbox/SurfaceToolbox.py Diff File
mod - Modules/Scripted/VectorToScalarVolume/VectorToScalarVolume.py Diff File
mod - Utilities/Templates/Modules/Scripted/TemplateKey.py Diff File