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); });