Skip to content

Commit b4a162b

Browse files
committed
Fix log message
Fixes #38
1 parent 48dfb9f commit b4a162b

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dicom-microscopy-viewer",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "Interactive web-based viewer for DICOM Microscopy Images",
55
"main": "build/dicom-microscopy-viewer.js",
66
"scripts": {

src/api.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ function _getRotation(metadata) {
6363
* parallel to the slide surface. Here, we further assume that rows and
6464
* columns of total pixel matrix are parallel to the borders of the slide,
6565
* i.e. the x and y axis of the slide coordinate system.
66-
* Hence, we only account for the case where the image may be rotated by
67-
* 180 degrees.
6866
*
6967
* The row direction (left to right) of the Total Pixel Matrix
7068
* is defined by the first three values.
@@ -1032,7 +1030,7 @@ class VLWholeSlideMicroscopyImageViewer {
10321030
}
10331031

10341032
removeROI(uid) {
1035-
console.info(`add ROI ${uid}`)
1033+
console.info(`remove ROI ${uid}`)
10361034
const feature = this[_drawingSource].getFeatureById(uid);
10371035
this[_features].remove(feature);
10381036
}

0 commit comments

Comments
 (0)