Skip to content

Commit

Permalink
Merge branch 'Ucodia-master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
customlogic committed Aug 18, 2016
2 parents c1f8007 + 420e045 commit 0399ab6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/dat/gui/GUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
}
}
);
Expand Down

0 comments on commit 0399ab6

Please sign in to comment.