Added updateDisplay on GUI object

This commit is contained in:
Lionel Ringenbach 2016-05-21 18:14:38 +02:00
parent 8f0eba8ade
commit 678d82e9ce

View File

@ -790,6 +790,15 @@ define([
this.__listening.push(controller); this.__listening.push(controller);
if (init) updateDisplays(this.__listening); if (init) updateDisplays(this.__listening);
},
updateDisplay: function() {
for (var c in this.__controllers) {
this.__controllers[c].updateDisplay();
}
for (var f in this.__folders) {
this.__folders[f].updateDisplay();
}
} }
} }