Skip to content

Commit 1991934

Browse files
committed
Merge pull request #4452 from plotly/fix-autoresize
Sane workspace auto-resize [fixes #4162]
2 parents ee33d86 + 5b06fb0 commit 1991934

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shelly/plotlyjs/static/plotlyjs/src/graph_obj.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3609,7 +3609,7 @@ plots.resize = function(gd) {
36093609

36103610
if(gd._redrawTimer) clearTimeout(gd._redrawTimer);
36113611

3612-
gd._redrawTimer = setTimeout(function(){
3612+
gd._redrawTimer = setTimeout(function() {
36133613
if((gd._fullLayout || {}).autosize) {
36143614
// autosizing doesn't count as a change that needs saving
36153615
var oldchanged = gd.changed;

0 commit comments

Comments
 (0)