Move 'Recent Files' menu entry and rename it 'Open Recent'

This commit is contained in:
Paddle
2023-07-27 11:40:33 +02:00
parent 9f1e2c9f37
commit 618a91eef5
2 changed files with 3 additions and 3 deletions

View File

@@ -134,7 +134,7 @@ StdCmdRecentFiles::StdCmdRecentFiles()
:Command("Std_RecentFiles")
{
sGroup = "File";
sMenuText = QT_TR_NOOP("Recent files");
sMenuText = QT_TR_NOOP("Open Recent");
sToolTipText = QT_TR_NOOP("Recent file list");
sWhatsThis = "Std_RecentFiles";
sStatusTip = QT_TR_NOOP("Recent file list");

View File

@@ -625,12 +625,12 @@ MenuItem* StdWorkbench::setupMenuBar() const
// File
auto file = new MenuItem( menuBar );
file->setCommand("&File");
*file << "Std_New" << "Std_Open" << "Separator" << "Std_CloseActiveWindow"
*file << "Std_New" << "Std_Open" << "Std_RecentFiles" << "Separator" << "Std_CloseActiveWindow"
<< "Std_CloseAllWindows" << "Separator" << "Std_Save" << "Std_SaveAs"
<< "Std_SaveCopy" << "Std_SaveAll" << "Std_Revert" << "Separator" << "Std_Import"
<< "Std_Export" << "Std_MergeProjects" << "Std_ProjectInfo"
<< "Separator" << "Std_Print" << "Std_PrintPreview" << "Std_PrintPdf"
<< "Separator" << "Std_RecentFiles" << "Separator" << "Std_Quit";
<< "Separator" << "Std_Quit";
// Edit
auto edit = new MenuItem( menuBar );