From e825761284e2a2826f567d12d5af852dde7049a3 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 3 Feb 2024 10:27:48 -0500 Subject: [PATCH] sagasu: Add icon for extract action --- sagasu/src/filetreewindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sagasu/src/filetreewindow.cpp b/sagasu/src/filetreewindow.cpp index 8dbad3c..087772f 100644 --- a/sagasu/src/filetreewindow.cpp +++ b/sagasu/src/filetreewindow.cpp @@ -53,7 +53,8 @@ FileTreeWindow::FileTreeWindow(HashDatabase &database, const QString &gamePath, auto menu = new QMenu(); - auto extractAction = menu->addAction(QStringLiteral("Extract..")); + auto extractAction = menu->addAction(QStringLiteral("Extract...")); + extractAction->setIcon(QIcon::fromTheme(QStringLiteral("archive-extract-symbolic"))); connect(extractAction, &QAction::triggered, this, [this, path] { Q_EMIT extractFile(path); });