From c1e73fb2f5f4113d7bb1908f2340da51502e2046 Mon Sep 17 00:00:00 2001 From: C4ndyF1sh <128715345+C4ndyF1sh@users.noreply.github.com> Date: Sun, 2 Feb 2025 02:05:32 +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 a5f9cfb39..6883258b8 100644 --- a/src/qt_gui/gui_context_menus.h +++ b/src/qt_gui/gui_context_menus.h @@ -345,7 +345,7 @@ public: QClipboard* clipboard = QGuiApplication::clipboard(); clipboard->setText(QString::fromStdString(m_games[itemID].name)); } - + if (selected == copySerial) { QClipboard* clipboard = QGuiApplication::clipboard(); clipboard->setText(QString::fromStdString(m_games[itemID].serial)); @@ -355,7 +355,7 @@ public: QClipboard* clipboard = QGuiApplication::clipboard(); clipboard->setText(QString::fromStdString(m_games[itemID].version)); } - + if (selected == copySize) { QClipboard* clipboard = QGuiApplication::clipboard(); clipboard->setText(QString::fromStdString(m_games[itemID].size));