From e50cab50b914e7202a174f7ea5abab29fc40fcac Mon Sep 17 00:00:00 2001 From: Andre Hartmann Date: Fri, 8 Feb 2019 18:14:13 +0100 Subject: [PATCH] ProjectExplorer: Remove ellipsis from Duplicate File This action does not open a dialog, it only duplicates the current file and adds it to the project. Change-Id: I9a7ba23b7168622656659ccb28a8a41b0dc7ddac Reviewed-by: Christian Kandeler --- src/plugins/projectexplorer/projectexplorer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 47164b48821..7caef6e4b37 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -1176,7 +1176,7 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er mfileContextMenu->addAction(cmd, Constants::G_FILE_OTHER); // duplicate file action - dd->m_duplicateFileAction = new QAction(tr("Duplicate File..."), this); + dd->m_duplicateFileAction = new QAction(tr("Duplicate File"), this); cmd = ActionManager::registerAction(dd->m_duplicateFileAction, Constants::DUPLICATEFILE, projecTreeContext); mfileContextMenu->addAction(cmd, Constants::G_FILE_OTHER);