diff --git a/src/dat/gui/GUI.js b/src/dat/gui/GUI.js index f37a952..f9890b9 100644 --- a/src/dat/gui/GUI.js +++ b/src/dat/gui/GUI.js @@ -729,6 +729,15 @@ common.extend( if (init) { updateDisplays(this.__listening); } + }, + + updateDisplay: function() { + common.each(this.__controllers, function(controller) { + controller.updateDisplay(); + }); + common.each(this.__folders, function(folder) { + folder.updateDisplay(); + }); } } );