mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-04 16:32:39 +00:00
Update gui_context_menus.h
This commit is contained in:
parent
85c66a5edd
commit
2df6bbc2af
@ -344,24 +344,23 @@ public:
|
||||
if (selected == copyName) {
|
||||
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));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (selected == copyFirmware) {
|
||||
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));
|
||||
|
||||
}
|
||||
|
||||
{
|
||||
|
||||
if (selected == copyNameAll) {
|
||||
QClipboard* clipboard = QGuiApplication::clipboard();
|
||||
QString combinedText = QString("Name:%1 | Serial:%2 | Version:%3 | Size:%4")
|
||||
|
Loading…
Reference in New Issue
Block a user