Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1729afa

Browse files
committed
fixups for new regl-line2d
1 parent 5326163 commit 1729afa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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.

src/traces/scattergl/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function calc(gd, trace) {
121121
scene.count++;
122122

123123
// stash scene ref
124-
stash.scene = scene;
124+
stash._scene = scene;
125125
stash.index = scene.count - 1;
126126
stash.x = x;
127127
stash.y = y;
@@ -326,7 +326,7 @@ function plot(gd, subplot, cdata) {
326326
if(!cdata.length) return;
327327

328328
var fullLayout = gd._fullLayout;
329-
var scene = cdata[0][0].t.scene;
329+
var scene = cdata[0][0].t._scene;
330330
var dragmode = fullLayout.dragmode;
331331

332332
// we may have more subplots than initialized data due to Axes.getSubplots method

0 commit comments

Comments
 (0)