Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function populateEngineBuildProperties()
if($CurrentEngineBuild.gitPath !$= "" && !$TorqueManager::gitNotFound)
AddActionButton("ManagerUI:download_image", "Pull Updates", "pullUpdateEngineBuild("@$CurrentEngineBuild@");", "");

AddActionButton("ManagerUI:cards_seek_top_image", "View Files", "openFileLocation("@$CurrentEngineBuild.localPath@");", "");
AddActionButton("ManagerUI:cards_seek_top_image", "View Files", "openFileLocation($CurrentEngineBuild.localPath);", "");

AddActionButton("ManagerUI:trashcan_image", "Delete Local Copy", "deleteEngineBuild("@$CurrentEngineBuild@");", "");
}
Expand Down
2 changes: 1 addition & 1 deletion core/ManagerUI/guis/modules/modulesPropertiesPage.tscript
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ function populateModuleProperties()
if($CurrentModule.gitPath !$= "" && !$TorqueManager::gitNotFound)
AddActionButton("ManagerUI:download_image", "Pull Updates", "pullUpdateModule($CurrentModule);", "");

AddActionButton("ManagerUI:cards_seek_top_image", "View Files", "openFileLocation("@$CurrentModule.localPath@");", "");
AddActionButton("ManagerUI:cards_seek_top_image", "View Files", "openFileLocation($CurrentModule.localPath);", "");

AddActionButton("ManagerUI:trashcan_image", "Delete Local Copy", "deleteModule($CurrentModule);", "");
}
Expand Down
2 changes: 1 addition & 1 deletion core/ManagerUI/guis/projects/projectPropertiesPage.tscript
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ function populateProjectProperties()
//AddActionButton("ManagerUI:textField_image", "Open GUI Editor", "", "");
//AddActionButton("ManagerUI:toolPencil_image", "Open Editor", "", "");

AddActionButton("ManagerUI:cards_seek_top_image", "View Files", "openFileLocation("@$CurrentProject.localPath@");", "");
AddActionButton("ManagerUI:cards_seek_top_image", "View Files", "openFileLocation($CurrentProject.localPath);", "");

if(isObject(%targetBuild) && !%targetBuild.isBinary)
{
Expand Down