From 9082c32baeaea0210d95a57d2062bec4ef485f76 Mon Sep 17 00:00:00 2001 From: David Rosca Date: Sat, 21 Jan 2017 12:22:07 +0100 Subject: [PATCH] TabBar: Change close action text to "Close Tab" in context menu --- src/lib/tabwidget/tabbar.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/tabwidget/tabbar.cpp b/src/lib/tabwidget/tabbar.cpp index be4d8fae6..a255b97ab 100644 --- a/src/lib/tabwidget/tabbar.cpp +++ b/src/lib/tabwidget/tabbar.cpp @@ -1,6 +1,6 @@ /* ============================================================ -* QupZilla - WebKit based browser -* Copyright (C) 2010-2016 David Rosca +* QupZilla - Qt web browser +* Copyright (C) 2010-2017 David Rosca * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -359,7 +359,7 @@ void TabBar::contextMenuEvent(QContextMenuEvent* event) menu.addAction(tr("Close Tabs To The Left"), this, SLOT(closeToLeft())); menu.addSeparator(); menu.addAction(m_window->action(QSL("Other/RestoreClosedTab"))); - menu.addAction(QIcon::fromTheme("window-close"), tr("Cl&ose"), this, SLOT(closeTab())); + menu.addAction(QIcon::fromTheme("window-close"), tr("Cl&ose Tab"), this, SLOT(closeTab())); } else { menu.addAction(IconProvider::newTabIcon(), tr("&New tab"), m_window, SLOT(addTab())); menu.addSeparator();