- make SceneApplication error message less error prone

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10198 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
nor..67 12 years ago
parent ff0b35b5f0
commit f084a0b8a0
  1. 8
      sdk/jme3-core/src/com/jme3/gde/core/scene/SceneApplication.java

@ -279,7 +279,7 @@ public class SceneApplication extends Application implements LookupProvider {
@Override
public void update() {
if (speed == 0) {
if(!started) {
return;
}
try {
@ -618,11 +618,7 @@ public class SceneApplication extends Application implements LookupProvider {
Exceptions.printStackTrace(t);
} else {
if (lastError != null && !lastError.equals(msg)) {
Message mesg = new NotifyDescriptor.Message(
"Error in scene!\n"
+ "(" + t + ")",
NotifyDescriptor.WARNING_MESSAGE);
DialogDisplayer.getDefault().notifyLater(mesg);
StatusDisplayer.getDefault().setStatusText("Error in Scene, check application log");
Exceptions.printStackTrace(t);
lastError = msg;
}

Loading…
Cancel
Save