- Changed the to check if a file is a dds file

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8020 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
rem..om 14 years ago
parent ecaa03492c
commit 0eeb23e248
  1. 2
      sdk/jme3-materialeditor/src/com/jme3/gde/materials/multiview/widgets/TexturePanel.java

@ -46,7 +46,7 @@ public class TexturePanel extends MaterialPropertyWidget {
if (!"".equals(textureName)) { if (!"".equals(textureName)) {
Texture tex = manager.loadTexture(textureName); Texture tex = manager.loadTexture(textureName);
Icon newicon = null; Icon newicon = null;
if (textureName.endsWith(".dds") || textureName.endsWith(".DDS")) { if (textureName.toLowerCase().endsWith(".dds")) {
if (ddsPreview == null) { if (ddsPreview == null) {
ddsPreview = new DDSPreview(manager); ddsPreview = new DDSPreview(manager);
} }

Loading…
Cancel
Save