Ver Fonte

SDK:
- fix NavMesh wizard titles

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8989 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

nor..67 há 13 anos atrás
pai
commit
32b2ed43e8

+ 1 - 1
jme3-navmesh-gen/src/com/jme3/gde/nmgen/wizard/NewNavMeshVisualPanel1.java

@@ -24,7 +24,7 @@ public final class NewNavMeshVisualPanel1 extends JPanel {
 
     @Override
     public String getName() {
-        return "Step #1";
+        return "Specify Settings";
     }
     
     public void loadSettings(WizardDescriptor wiz){

+ 1 - 1
jme3-navmesh-gen/src/com/jme3/gde/nmgen/wizard/NewNavMeshWizardAction.java

@@ -42,7 +42,7 @@ public final class NewNavMeshWizardAction extends AbstractNewSpatialWizardAction
         WizardDescriptor wizardDescriptor = new WizardDescriptor(getPanels());
         // {0} will be replaced by WizardDesriptor.Panel.getComponent().getName()
         wizardDescriptor.setTitleFormat(new MessageFormat("{0}"));
-        wizardDescriptor.setTitle("Your wizard dialog title here");
+        wizardDescriptor.setTitle("Create NavMesh");
         NavMeshGenerator gen = new NavMeshGenerator();
         wizardDescriptor.putProperty("generator", gen);