Skip to content

Commit a774016

Browse files
fix: name of paste selection GraphicsView action (fixes paceholder#372)
1 parent 6309992 commit a774016

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GraphicsView.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ void GraphicsView::setScene(BasicGraphicsScene *scene)
129129

130130
{
131131
delete _pasteAction;
132-
_pasteAction = new QAction(QStringLiteral("Copy Selection"), this);
132+
_pasteAction = new QAction(QStringLiteral("Paste Selection"), this);
133133
_pasteAction->setShortcutContext(Qt::ShortcutContext::WidgetShortcut);
134134
_pasteAction->setShortcut(QKeySequence(QKeySequence::Paste));
135135
connect(_pasteAction, &QAction::triggered, this, &GraphicsView::onPasteObjects);

0 commit comments

Comments
 (0)