Skip to content
Snippets Groups Projects
Commit 23c53cd9 authored by Alexander Rose's avatar Alexander Rose
Browse files

fix disable-wboit Viewer GET param

parent e415cbec
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ Note that since we don't clearly distinguish between a public and private interf
- Improve pdb parsing: handle non unique atom and chain names (fixes #156)
- Fix volume streaming for entries with multiple contour lists
- Add ``allowTransparentBackfaces`` parameter to support double-sided rendering of transparent geometries
- Fix ``disable-wboit`` Viewer GET param
## [v3.5.0] - 2022-03-25
......
......@@ -71,7 +71,7 @@
pixelScale: parseFloat(pixelScale) || 1,
pickScale: parseFloat(pickScale) || 0.25,
pickPadding: isNaN(parseFloat(pickPadding)) ? 1 : parseFloat(pickPadding),
enableWboit: disableWboit ? true : void 0, // use default value if disable-wboit is not set
enableWboit: disableWboit ? false : void 0, // use default value if disable-wboit is not set
preferWebgl1: preferWebgl1,
}).then(viewer => {
var snapshotId = getParam('snapshot-id', '[^&]+').trim();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment