add function for manually updating display

This commit is contained in:
James B. Pollack 2015-09-26 14:14:21 -07:00
parent 7a59a7dc43
commit 06a6462636

View file

@ -196,3 +196,11 @@ function listenForSettingsUpdates() {
});
}
}
function manuallyUpdateDisplay(gui) {
// Iterate over all controllers
for (var i in gui.__controllers) {
gui.__controllers[i].updateDisplay();
}
}