Skip to content

Commit

Permalink
Fixed typos field descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Areloch committed Sep 21, 2022
1 parent d43826e commit 46e55f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ function populateEngineBuildProperties(%isNew)
}
else if($CurrentEngineBuild.isLocalOrGit $= "Local Path")
{
MainViewStack.add(createEditCard("Local Directory Path", "Folder", "$CurrentEngineBuild.localPath", "What local directory path this engine build is drom on the current machine", ""));
MainViewStack.add(createEditCard("Local Directory Path", "Folder", "$CurrentEngineBuild.localPath", "What local directory path this engine build is from on the current machine", ""));
}
}
else
{
MainViewStack.add(createEditCard("Git URL Path", "TextEdit", "$CurrentEngineBuild.gitPath", "What URL for the git repo this engine build is from", ""));
MainViewStack.add(createEditCard("Git Branch", "TextEdit", "$CurrentEngineBuild.branchName", "What branch name for the git repo this engine build is from. Leave blank to use the repository default", ""));
MainViewStack.add(createEditCard("Local Directory Path", "Folder", "$CurrentEngineBuild.localPath", "What local directory path this engine build is drom on the current machine", ""));
MainViewStack.add(createEditCard("Local Directory Path", "Folder", "$CurrentEngineBuild.localPath", "What local directory path this engine build is from on the current machine", ""));
}

if($CurrentEngineBuild.isDefault)
Expand Down
4 changes: 2 additions & 2 deletions core/ManagerUI/guis/modules/modulesPropertiesPage.tscript
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function populateModuleProperties(%isNew)
}
else if($CurrentModule.isLocalOrGit $= "Local Path")
{
MainViewStack.add(createEditCard("Local Directory Path", "ModuleFile", "$CurrentModule.localPath", "What local directory path this module is drom on the current machine", ""));
MainViewStack.add(createEditCard("Local Directory Path", "ModuleFile", "$CurrentModule.localPath", "What local directory path this module is from on the current machine", ""));

$CurrentModule.localPath = makeFullPath($CurrentModule.localPath);
if(fileExt($CurrentModule.localPath) $= ".module")
Expand Down Expand Up @@ -104,7 +104,7 @@ function populateModuleProperties(%isNew)
%gitBranchField.callonChildren("setActive", false);
MainViewStack.add(%gitBranchField);

MainViewStack.add(createEditCard("Local Directory Path", "Folder", "$CurrentModule.localPath", "What local directory path this module is drom on the current machine", ""));
MainViewStack.add(createEditCard("Local Directory Path", "Folder", "$CurrentModule.localPath", "What local directory path this module is from on the current machine", ""));

if(isModuleDownloaded($CurrentModule))
{
Expand Down

0 comments on commit 46e55f3

Please sign in to comment.