From 7ec4420eaf60852ef507ab53d2e82b2daf1a56f2 Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Sat, 20 Apr 2024 13:53:44 +0800 Subject: [PATCH] chore(UI): add icon for properties action I didn't add this icon because QTBUG-124085, and since I fixed that issue (and also since we won't use Qt 6.7.0 for Windows build), let's add the icon back ;) --- app/actionmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/actionmanager.cpp b/app/actionmanager.cpp index 68354cd..f5e68d2 100644 --- a/app/actionmanager.cpp +++ b/app/actionmanager.cpp @@ -74,7 +74,7 @@ void ActionManager::setupAction(MainWindow *mainWindow) CREATE_NEW_ACTION(mainWindow, actionSettings); CREATE_NEW_THEMEICON_ACTION(mainWindow, actionHelp, system-help); CREATE_NEW_THEMEICON_ACTION(mainWindow, actionLocateInFileManager, system-file-manager); - CREATE_NEW_ACTION(mainWindow, actionProperties); + CREATE_NEW_THEMEICON_ACTION(mainWindow, actionProperties, document-properties); CREATE_NEW_ACTION(mainWindow, actionQuitApp); #undef CREATE_NEW_ACTION #undef CREATE_NEW_THEMEICON_ACTION