- fix NavMesh wizard titles

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8989 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2012-01-07 16:34:35 +00:00
parent eee8f765ff
commit 89be3fac6e
2 changed files with 2 additions and 2 deletions

View File

@ -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){

View File

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