From ceea36437bd3b60f648a4e0902603319173144b4 Mon Sep 17 00:00:00 2001 From: C4ndyF1sh <128715345+C4ndyF1sh@users.noreply.github.com> Date: Sun, 2 Feb 2025 00:36:29 +0100 Subject: [PATCH] Update gui_context_menus.h --- src/qt_gui/gui_context_menus.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt_gui/gui_context_menus.h b/src/qt_gui/gui_context_menus.h index 81217d76c..5549f042e 100644 --- a/src/qt_gui/gui_context_menus.h +++ b/src/qt_gui/gui_context_menus.h @@ -77,8 +77,8 @@ 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* copySize = new QAction(tr("Copy Size..."), widget); + QAction* copyFirmware = new QAction(tr("Copy Firmware"), widget); + QAction* copySize = new QAction(tr("Copy Size"), widget); QAction* copyNameAll = new QAction(tr("Copy All"), widget); copyMenu->addAction(copyName);