In
Atom, if the user selects
Separate folder section, I use the folder thumbs. Otherwise, the folder thumbnails are treated like regular thumbnails. I'm currently making the switch in
init.bsh, but I'd rather be doing it from the skin's UI. I've tried the obvious approach:
new StateMonitor() {
public void onChange() {
engine.setProcessFolderThumbs(folderSection.isSelected());
window.engine2UI();
}
}.add(folderSection).done();
This doesn't crash or produce any error message, but it doesn't work, either, and it freezes the checkbox in the skin's UI.
Is there some other way of pulling this off?