- make SceneApplication error message less error prone

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10198 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2013-01-27 12:19:33 +00:00
parent ff0b35b5f0
commit f084a0b8a0

View File

@ -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;
}