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

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