IDEA-276407 Remove more settings in the General Project Type

GitOrigin-RevId: 21a75227e963b529635991fa0430284656fda7ee
This commit is contained in:
Dmitry Avdeev
2021-08-23 13:08:25 +00:00
committed by intellij-monorepo-bot
parent d53d3825df
commit 6f7d008170
2 changed files with 7 additions and 1 deletions
@@ -22,7 +22,9 @@ public class GeneralModuleTypeForIdea extends GeneralModuleType {
@Override
public @NotNull ModuleWizardStep getCustomOptionsStep(WizardContext context,
Disposable parentDisposable) {
return new ProjectSettingsStep(context);
ProjectSettingsStep step = new ProjectSettingsStep(context);
step.getExpertPlaceholder().removeAll();
return step;
}
};
}
@@ -69,6 +69,10 @@ public class ProjectSettingsStep extends ModuleWizardStep implements SettingsSte
}
}
JPanel getExpertPlaceholder() {
return myExpertPlaceholder;
}
private JPanel getModulePanel() {
return myModuleNameLocationComponent.getModulePanel();
}