summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Studio/Palettes/Project/ProjectContextMenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Authoring/Studio/Palettes/Project/ProjectContextMenu.cpp')
-rw-r--r--src/Authoring/Studio/Palettes/Project/ProjectContextMenu.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Authoring/Studio/Palettes/Project/ProjectContextMenu.cpp b/src/Authoring/Studio/Palettes/Project/ProjectContextMenu.cpp
index 7c8c8a14..ac3095ca 100644
--- a/src/Authoring/Studio/Palettes/Project/ProjectContextMenu.cpp
+++ b/src/Authoring/Studio/Palettes/Project/ProjectContextMenu.cpp
@@ -34,8 +34,8 @@ ProjectContextMenu::ProjectContextMenu(ProjectView *parent, int index)
, m_view(parent)
, m_index(index)
{
- QAction *action = new QAction(tr("Show in Explorer"));
- connect(action, &QAction::triggered, this, &ProjectContextMenu::handleShowInExplorer);
+ QAction *action = new QAction(tr("Show Containing Folder"));
+ connect(action, &QAction::triggered, this, &ProjectContextMenu::handleShowContainingFolder);
addAction(action);
addSeparator();
@@ -66,9 +66,9 @@ ProjectContextMenu::~ProjectContextMenu()
{
}
-void ProjectContextMenu::handleShowInExplorer()
+void ProjectContextMenu::handleShowContainingFolder()
{
- m_view->showInExplorer(m_index);
+ m_view->showContainingFolder(m_index);
}
void ProjectContextMenu::handleCopyPath()