Skip to content

Commit c62e4a8

Browse files
committed
Small bug solved accessing bounds, now bbox selection from VGV also works in slice viewer
1 parent 76f0e3a commit c62e4a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/scripts/contrib/SliceViewer/SliceView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ define([
134134
// an AoI the 'area' parameter is set, otherwise it is 'null'.
135135
if (area) {
136136
// 1. store current AoI bounds
137-
this.currentAoI = area.geometry.bounds.toString();
137+
this.currentAoI = area.geometry.getBounds().toString();
138138

139139
// 2. store current ToI interval
140140
var toi = this.currentToI;

0 commit comments

Comments
 (0)