From c4b38557e50ff51c40905fad66284f11e1228800 Mon Sep 17 00:00:00 2001 From: C4ndyF1sh <128715345+C4ndyF1sh@users.noreply.github.com> Date: Sun, 2 Feb 2025 02:41:17 +0100 Subject: [PATCH] Update gui_context_menus.h --- src/qt_gui/gui_context_menus.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/qt_gui/gui_context_menus.h b/src/qt_gui/gui_context_menus.h index 9c98032f2..acdd280b3 100644 --- a/src/qt_gui/gui_context_menus.h +++ b/src/qt_gui/gui_context_menus.h @@ -77,13 +77,13 @@ public: QMenu* copyMenu = new QMenu(tr("Copy info..."), widget); QAction* copyName = new QAction(tr("Copy Name"), widget); QAction* copySerial = new QAction(tr("Copy Serial"), widget); - QAction* copyFirmware = new QAction(tr("Copy Firmware"), widget); + QAction* copyFirmware = new QAction(tr("Copy Version"), widget); QAction* copySize = new QAction(tr("Copy Size"), widget); QAction* copyNameAll = new QAction(tr("Copy All"), widget); copyMenu->addAction(copyName); copyMenu->addAction(copySerial); - copyMenu->addAction(copyFirmware); + copyMenu->addAction(copyVersion); copyMenu->addAction(copySize); copyMenu->addAction(copyNameAll); @@ -351,7 +351,7 @@ public: clipboard->setText(QString::fromStdString(m_games[itemID].serial)); } - if (selected == copyFirmware) { + if (selected == copyVersion) { QClipboard* clipboard = QGuiApplication::clipboard(); clipboard->setText(QString::fromStdString(m_games[itemID].version)); }