From e7c059c32b525cc3a5b934d2af13d0f5601b6ba4 Mon Sep 17 00:00:00 2001 From: Ian Farrell Date: Sat, 17 May 2025 10:07:13 -0400 Subject: [PATCH] Add an icon to 'Open theme folder' --- lxqt-config-appearance/lxqtthemeconfig.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lxqt-config-appearance/lxqtthemeconfig.cpp b/lxqt-config-appearance/lxqtthemeconfig.cpp index aac197f1..3e6c03ac 100644 --- a/lxqt-config-appearance/lxqtthemeconfig.cpp +++ b/lxqt-config-appearance/lxqtthemeconfig.cpp @@ -183,6 +183,7 @@ void LXQtThemeConfig::contextMenu(const QPoint& p) { QMenu menu; QAction *a = menu.addAction(tr("Open theme folder")); + a->setIcon(QIcon::fromTheme(QStringLiteral("document-open"))); connect(a, &QAction::triggered, [this, p] { doubleClicked(ui->lxqtThemeList->itemAt(p), 0); });