Skip to content

Commit

Permalink
Merge pull request #564 from effigies/fix/orthoview_lr_labels
Browse files Browse the repository at this point in the history
FIX: Set L/R labels in orthoview correctly
  • Loading branch information
effigies authored Oct 18, 2017
2 parents b7eee37 + ee7d536 commit b2c0f81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nibabel/viewers.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def __init__(self, data, affine=None, axes=None, title=None):
self._scalers[self._order[1]] / self._scalers[self._order[0]]]
self._sizes = [self._data.shape[order] for order in self._order]
for ii, xax, yax, ratio, label in zip([0, 1, 2], [1, 0, 0], [2, 2, 1],
r, ('SAIP', 'SLIR', 'ALPR')):
r, ('SAIP', 'SRIL', 'ARPL')):
ax = self._axes[ii]
d = np.zeros((self._sizes[yax], self._sizes[xax]))
im = self._axes[ii].imshow(
Expand Down

0 comments on commit b2c0f81

Please sign in to comment.