File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -247,9 +247,8 @@ class VLWholeSlideMicroscopyImageViewer {
247247 * options:
248248 * - client (instance of DICOMwebClient)
249249 * - metadata (array of DICOM JSON metadata for each image instance)
250- * - retrieveRendered (whether frames should be retrieved using DICOMweb RetrieveRenderedTransaction)
250+ * - retrieveRendered (whether frames should be retrieved using DICOMweb RetrieveRenderedTransaction; default: true )
251251 * - useWebGL (whether WebGL renderer should be used; default: true)
252- * - mediaType Object: { mimetype, transferSyntaxUID } (Used for setting mediaType in dicomWebClient's retrieveInstanceFrame call)
253252 */
254253 constructor ( options ) {
255254 if ( 'useWebGL' in options ) {
@@ -260,7 +259,7 @@ class VLWholeSlideMicroscopyImageViewer {
260259 this [ _client ] = options . client ;
261260
262261 if ( ! ( 'retrieveRendered' in options ) ) {
263- options . retrieveRendered = false ;
262+ options . retrieveRendered = true ;
264263 }
265264
266265 if ( ! ( 'controls' in options ) ) {
You can’t perform that action at this time.
0 commit comments