Skip to content

Commit

Permalink
Adjusted displaying name for Java and OnDisk projects https://github.…
Browse files Browse the repository at this point in the history
  • Loading branch information
rat-moonshine committed Jun 3, 2024
1 parent 80986fa commit 2a98ef5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ package actionScripts.plugin.java.javaproject.importer
}

var javaProject:JavaProjectVO = new JavaProjectVO(projectFolder, projectName);
javaProject.projectFolder.name = javaProject.projectName;
//javaProject.menuType = ProjectMenuTypes.JAVA;

var sourceDirectory:String = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ package actionScripts.plugin.ondiskproj.importer
var project:OnDiskProjectVO = new OnDiskProjectVO(projectFolder, projectName);
var separator:String = IDEModel.getInstance().fileCore.separator;

project.projectFolder.name = project.projectName;
project.projectFile = settingsFileLocation;

var data:XML;
Expand Down

0 comments on commit 2a98ef5

Please sign in to comment.