From e4d2046145b397ba5d91fd521bab6fd0b90d6bd8 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Tue, 19 Sep 2023 19:24:22 +0200 Subject: [PATCH] ScreenRecorder: Use better icon for "copy image" The same icon is used in other places to copy an image tnto the clipboard. Change-Id: I094bd885f1efac3d35c57bbd4c5905e26b8f0c40 Reviewed-by: Cristian Adam --- src/plugins/screenrecorder/cropandtrim.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/screenrecorder/cropandtrim.cpp b/src/plugins/screenrecorder/cropandtrim.cpp index a0bccbd23b0..fb044500d8c 100644 --- a/src/plugins/screenrecorder/cropandtrim.cpp +++ b/src/plugins/screenrecorder/cropandtrim.cpp @@ -304,7 +304,7 @@ CropWidget::CropWidget(QWidget *parent) auto copyImageToClipboardAction = new QAction(Tr::tr("Copy current, cropped frame as image " "into the Clipboard"), this); - copyImageToClipboardAction->setIcon(Icons::COPY.icon()); + copyImageToClipboardAction->setIcon(Icons::SNAPSHOT.icon()); copyImageToClipboardAction->setShortcut(QKeySequence::Copy); auto copyImageToClipboardButton = new QToolButton;