1
0
Fork 0

Rename the confusing menu option 'Delete' to 'Close' in the custom tab bar

This commit is contained in:
Duncan Ogilvie 2020-12-15 18:45:54 +01:00
parent b08207b9b5
commit 25fdec4aae
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ void MHTabBar::contextMenuEvent(QContextMenuEvent* event)
QAction wDetach(tr("&Detach"), this);
if(mAllowDetach)
wMenu.addAction(&wDetach);
QAction wDelete(tr("Delet&e"), this);
QAction wDelete(tr("&Close"), this);
if(mAllowDelete)
wMenu.addAction(&wDelete);
QAction* executed = wMenu.exec(event->globalPos());