From 795adb668f786bca4d1e219af3acdb258ca26fcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Pol=C3=A1=C5=A1ek?= Date: Thu, 12 Feb 2026 19:10:20 +0100 Subject: [PATCH] Use target type ctors --- .../cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Icons.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Icons.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Icons.cs index fbd8928ab3..6b0c0109e5 100644 --- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Icons.cs +++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Icons.cs @@ -10,11 +10,11 @@ internal static class Icons { internal static IconInfo WindowWalkerIcon { get; } = IconHelpers.FromRelativePath("Assets\\WindowWalker.svg"); - internal static IconInfo EndTask { get; } = new IconInfo("\uF140"); // StatusCircleBlock + internal static IconInfo EndTask { get; } = new("\uF140"); // StatusCircleBlock - internal static IconInfo CloseWindow { get; } = new IconInfo("\uE894"); // Clear + internal static IconInfo CloseWindow { get; } = new("\uE894"); // Clear - internal static IconInfo Info { get; } = new IconInfo("\uE946"); // Info + internal static IconInfo Info { get; } = new("\uE946"); // Info internal static IconInfo GenericAppIcon { get; } = new("\uE737"); // Favicon }