mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-18 08:22:15 -07:00
Rename save to clipboard actions in DeckPreviewWidget
This commit is contained in:
parent
57a8960841
commit
673b08a59c
1 changed files with 2 additions and 2 deletions
|
|
@ -298,11 +298,11 @@ QMenu *DeckPreviewWidget::createRightClickMenu()
|
||||||
|
|
||||||
connect(saveToClipboardMenu->addAction(tr("Annotated")), &QAction::triggered, this,
|
connect(saveToClipboardMenu->addAction(tr("Annotated")), &QAction::triggered, this,
|
||||||
[this] { deckLoader->saveToClipboard(true, true); });
|
[this] { deckLoader->saveToClipboard(true, true); });
|
||||||
connect(saveToClipboardMenu->addAction(tr("Annotated (No set name or number)")), &QAction::triggered, this,
|
connect(saveToClipboardMenu->addAction(tr("Annotated (No set info)")), &QAction::triggered, this,
|
||||||
[this] { deckLoader->saveToClipboard(true, false); });
|
[this] { deckLoader->saveToClipboard(true, false); });
|
||||||
connect(saveToClipboardMenu->addAction(tr("Not Annotated")), &QAction::triggered, this,
|
connect(saveToClipboardMenu->addAction(tr("Not Annotated")), &QAction::triggered, this,
|
||||||
[this] { deckLoader->saveToClipboard(false, true); });
|
[this] { deckLoader->saveToClipboard(false, true); });
|
||||||
connect(saveToClipboardMenu->addAction(tr("Not Annotated (No set name or number)")), &QAction::triggered, this,
|
connect(saveToClipboardMenu->addAction(tr("Not Annotated (No set info)")), &QAction::triggered, this,
|
||||||
[this] { deckLoader->saveToClipboard(false, false); });
|
[this] { deckLoader->saveToClipboard(false, false); });
|
||||||
|
|
||||||
menu->addSeparator();
|
menu->addSeparator();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue