Skip to content

Commit

Permalink
Add empty setFeatures method
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Dec 22, 2023
1 parent 859a9a4 commit 264db95
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/tools/opacity.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,13 @@ export class Opacity {
// does nothing
}

/**
* Set the tool live features: does nothing.
*
* @param {object} _features The list of features.
*/
setFeatures(_features) {
// does nothing
}

} // Opacity class
9 changes: 9 additions & 0 deletions src/tools/windowLevel.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,4 +264,13 @@ export class WindowLevel {
// does nothing
}

/**
* Set the tool live features: does nothing.
*
* @param {object} _features The list of features.
*/
setFeatures(_features) {
// does nothing
}

} // WindowLevel class
9 changes: 9 additions & 0 deletions src/tools/zoomPan.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,4 +313,13 @@ export class ZoomAndPan {
// does nothing
}

/**
* Set the tool live features: does nothing.
*
* @param {object} _features The list of features.
*/
setFeatures(_features) {
// does nothing
}

} // ZoomAndPan class

0 comments on commit 264db95

Please sign in to comment.