Skip to content

Commit

Permalink
small bugfix on atlas viewer
Browse files Browse the repository at this point in the history
  • Loading branch information
oliche committed Nov 11, 2024
1 parent e0d7d32 commit e4fd8fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions atlasview/atlasview.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ def mouseMoveEvent(self, scenepos):
self.label_region.setText("")
self.label_acronym.setText("")
else:
self.label_region.setText(region['name'][0])
self.label_acronym.setText(region['acronym'][0])
self.label_region.setText(region['name'])
self.label_acronym.setText(region['acronym'])

def replace_image_layer(self, index, **kwargs):
if index and len(self.imageItem) >= index:
Expand Down

0 comments on commit e4fd8fb

Please sign in to comment.