Explorar el Código

- fix in MaterialPropertyEditor cache clear

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7935 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
nor..67 hace 14 años
padre
commit
7deb3acc6d

+ 1 - 1
jme3-materialeditor/src/com/jme3/gde/materials/MaterialPropertyEditor.java

@@ -137,7 +137,7 @@ public class MaterialPropertyEditor implements PropertyEditor, SceneExplorerProp
 
                 public Void call() throws Exception {
                     SceneRequest request = SceneApplication.getApplication().getCurrentSceneRequest();
-                    ((DesktopAssetManager) request.getManager()).deleteFromCache(new AssetKey(text));
+                    ((DesktopAssetManager) request.getManager()).deleteFromCache(new MaterialKey(text));
                     Material localMaterial = (Material) request.getManager().loadMaterial(text);
                     if (localMaterial != null) {
                         material = localMaterial;