- fix in FilterExplorer

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7711 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
nor..67 14 years ago
parent d21d74a110
commit 80aedc02ec
  1. 6
      sdk/jme3-core/src/com/jme3/gde/core/filters/FilterExplorerTopComponent.java

@ -167,16 +167,16 @@ public final class FilterExplorerTopComponent extends TopComponent implements Ex
if (added == enabled) {
return;
}
added = enabled;
if (currentFile != null) {
added = enabled;
final FilterPostProcessor fpp = this.node.getFilterPostProcessor();
SceneApplication.getApplication().enqueue(new Callable() {
public Object call() throws Exception {
if (enabled) {
SceneApplication.getApplication().getViewPort().removeProcessor(fpp);
} else {
SceneApplication.getApplication().getViewPort().addProcessor(fpp);
} else {
SceneApplication.getApplication().getViewPort().removeProcessor(fpp);
}
return null;
}

Loading…
Cancel
Save