From 5a775fc5f73ec3a39d17c261e4ea7e715eff44d1 Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Thu, 4 Apr 2024 16:58:42 +0800 Subject: [PATCH] WindowsIconEngine: Use the correct icon for document-properties Currently the icon used by document-properties is a gear icon, on Windows, the actual icon used by explorer's context menu for the properties menu option is the wrench icon. This patch change the icon to the wrench icon. Fixes: QTBUG-124085 Pick-to: 6.7 Change-Id: Ife49ad64d23b73b7676bc39330887e2cb320dcf9 Reviewed-by: Volker Hilsheimer --- src/plugins/platforms/windows/qwindowsiconengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/platforms/windows/qwindowsiconengine.cpp b/src/plugins/platforms/windows/qwindowsiconengine.cpp index 4c32f1327f..5e5ca22ec1 100644 --- a/src/plugins/platforms/windows/qwindowsiconengine.cpp +++ b/src/plugins/platforms/windows/qwindowsiconengine.cpp @@ -30,7 +30,7 @@ QString QWindowsIconEngine::glyphs() const {"document-page-setup"_L1, u"\ue7c3"}, {"document-print"_L1, u"\ue749"}, {"document-print-preview"_L1, u"\ue956"}, - {"document-properties"_L1, u"\ue713"}, + {"document-properties"_L1, u"\ue90f"}, {"document-revert"_L1, u"\ue7a7"}, // ? {"document-save"_L1, u"\ue74e"}, // or e78c? {"document-save-as"_L1, u"\ue792"},