Skip to content
Snippets Groups Projects
Commit 71b307d0 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

props.Point properties no longer accept labels. These weren't being used

anywhere, anyway.
parent 52793d7c
No related branches found
No related tags found
No related merge requests found
......@@ -43,12 +43,12 @@ class LocationPanel(fslpanel.FSLEyesPanel):
"""
voxelLocation = props.Point(ndims=3, real=False, labels=('X', 'Y', 'Z'))
voxelLocation = props.Point(ndims=3, real=False)
"""If the currently selected overlay is a :class:`.Image`, this property
tracks the current display location in voxel coordinates.
"""
worldLocation = props.Point(ndims=3, real=True, labels=('X', 'Y', 'Z'))
worldLocation = props.Point(ndims=3, real=True)
def __init__(self, parent, overlayList, displayCtx):
......
......@@ -44,7 +44,7 @@ class DisplayContext(props.SyncableHasProperties):
"""
location = props.Point(ndims=3, labels=('X', 'Y', 'Z'))
location = props.Point(ndims=3)
"""The location property contains the currently selected
3D location (xyz) in the current display coordinate system.
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment