Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Run] Fluent UX #28538

Merged
merged 34 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
48b59dd
New design
niels9001 Sep 12, 2023
cfaa30d
Updating icons
niels9001 Sep 12, 2023
b87f61e
Adding keywords
niels9001 Sep 12, 2023
cc01002
Only show plugins when search query is empty
niels9001 Sep 13, 2023
cec70c7
Update App.xaml
niels9001 Sep 13, 2023
b1c7e67
Update App.xaml
niels9001 Sep 13, 2023
075621e
Filter plugins
niels9001 Sep 13, 2023
fc5d887
Fix image name
niels9001 Sep 14, 2023
fb49b99
refresh plugins overview
davidegiacometti Sep 15, 2023
9ba84e0
fix context menu icons in win10
davidegiacometti Sep 26, 2023
fcd7b97
Remove unused animations
niels9001 Oct 3, 2023
15df96e
Resolving crashing
niels9001 Oct 3, 2023
9432547
Fix focus visual and a11y
niels9001 Oct 3, 2023
65f29ae
Remove unused styles
niels9001 Oct 3, 2023
5739d6d
Revert "Remove unused styles"
niels9001 Oct 3, 2023
4d48677
Fix value generator light vs dark icon
jaimecbernardo Oct 3, 2023
a09d396
Fix tab characters
jaimecbernardo Oct 3, 2023
fcf57e4
Merge branch 'main' into niels9001/run-fluent-run
niels9001 Nov 7, 2023
ef1e273
Merge branch 'main' into niels9001/run-fluent-run
niels9001 Nov 9, 2023
61c14f5
Fix CI
niels9001 Nov 9, 2023
25727f1
Update SettingsReader.cs
niels9001 Nov 9, 2023
aed0175
Adding common OS check helper
niels9001 Nov 13, 2023
7d96131
Update MainWindow.xaml.cs
niels9001 Nov 15, 2023
9bc3c15
Fix background
niels9001 Nov 15, 2023
52f58b7
More tweaks
niels9001 Nov 15, 2023
fb16ec9
XAML styler and updating legacy brushes
niels9001 Nov 15, 2023
7034328
Updates + xaml styling
niels9001 Nov 15, 2023
cdea23c
Fix CI
niels9001 Nov 15, 2023
f105aba
Fix CI2
niels9001 Nov 15, 2023
5ffb169
fix font family and overview refresh
davidegiacometti Nov 15, 2023
cd984eb
Merge branch 'main' into niels9001/run-fluent-run
niels9001 Nov 16, 2023
ec7650f
Delete shutdown.light-1.png
niels9001 Nov 17, 2023
efdf03c
Updating icons
niels9001 Nov 17, 2023
5ae0dc7
Set DPI
niels9001 Nov 17, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/modules/imageresizer/ui/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
<v:VisibilityBoolConverter x:Key="VisibilityBoolConverter" />
</ResourceDictionary>
</Application.Resources>
</Application>
</Application>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private ContextMenuResult CreateContextMenuEntry(UnitConversionResult result)
PluginName = Name,
Title = Properties.Resources.context_menu_copy,
Glyph = "\xE8C8",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.Enter,
Action = _ =>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@
<None Update="Images\monitor.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Images\code-dark.png">
<None Update="Images\code.dark.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Images\code-light.png">
<None Update="Images\code.light.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
Expand Down
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation
// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

Expand Down Expand Up @@ -41,7 +41,7 @@ public static Bitmap BitmapOverlayToCenter(Bitmap bitmap1, Bitmap overlayBitmap)
{
int bitmap1Width = bitmap1.Width;
int bitmap1Height = bitmap1.Height;

bitmap1.SetResolution(144, 144);
using Bitmap overlayBitmapResized = new Bitmap(overlayBitmap, new System.Drawing.Size(bitmap1Width / 2, bitmap1Height / 2));

float marginLeft = (float)((bitmap1Width * 0.7) - (overlayBitmapResized.Width * 0.5));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"Website": "https://github.com/ricardosantos9521/PowerToys/",
"ExecuteFileName": "Community.PowerToys.Run.Plugin.VSCodeWorkspaces.dll",
"IsGlobal": false,
"IcoPathDark": "Images\\code-dark.png",
"IcoPathLight": "Images\\code-light.png"
"IcoPathDark": "Images\\code.dark.png",
"IcoPathLight": "Images\\code.light.png"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private Result GetResult(IComputeRequest request)
{
ContextData = request.Result,
Title = request.ResultToString(),
IcoPath = _isLightTheme ? "Images/ValueGenerator.dark.png" : "Images/ValueGenerator.light.png",
IcoPath = _isLightTheme ? "Images/ValueGenerator.light.png" : "Images/ValueGenerator.dark.png",
Score = 300,
SubTitle = request.Description,
Action = c =>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.Microsoft_plugin_folder_copy_path,
Glyph = "\xE8C8",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
niels9001 marked this conversation as resolved.
Show resolved Hide resolved
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control,
Action = (context) =>
Expand All @@ -65,7 +65,7 @@ public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.Microsoft_plugin_folder_open_in_console,
Glyph = "\xE756",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,

Expand Down Expand Up @@ -104,7 +104,7 @@ private ContextMenuResult CreateOpenContainingFolderResult(SearchResult record)
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.Microsoft_plugin_folder_open_containing_folder,
Glyph = "\xE838",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.E,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.Microsoft_plugin_indexer_copy_path,
Glyph = "\xE8C8",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control,

Expand All @@ -86,7 +86,7 @@ public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.Microsoft_plugin_indexer_open_in_console,
Glyph = "\xE756",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,

Expand Down Expand Up @@ -125,7 +125,7 @@ private static ContextMenuResult CreateRunAsAdminContextMenu(SearchResult record
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.Microsoft_plugin_indexer_run_as_administrator,
Glyph = "\xE7EF",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.Enter,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand All @@ -152,7 +152,7 @@ private static ContextMenuResult CreateRunAsUserContextMenu(SearchResult record)
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.Microsoft_plugin_indexer_run_as_user,
Glyph = "\xE7EE",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.U,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand Down Expand Up @@ -194,7 +194,7 @@ private ContextMenuResult CreateOpenContainingFolderResult(SearchResult record)
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.Microsoft_plugin_indexer_open_containing_folder,
Glyph = "\xE838",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.E,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public List<ContextMenuResult> ContextMenus(string queryArguments, IPublicAPI ap
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.wox_plugin_program_run_as_administrator,
Glyph = "\xE7EF",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.Enter,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand All @@ -170,7 +170,7 @@ public List<ContextMenuResult> ContextMenus(string queryArguments, IPublicAPI ap
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.wox_plugin_program_open_containing_folder,
Glyph = "\xE838",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.E,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand All @@ -186,7 +186,7 @@ public List<ContextMenuResult> ContextMenus(string queryArguments, IPublicAPI ap
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.wox_plugin_program_open_in_console,
Glyph = "\xE756",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = (context) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public List<ContextMenuResult> ContextMenus(string queryArguments, IPublicAPI ap
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.wox_plugin_program_run_as_administrator,
Glyph = "\xE7EF",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.Enter,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand All @@ -305,7 +305,7 @@ public List<ContextMenuResult> ContextMenus(string queryArguments, IPublicAPI ap
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.wox_plugin_program_run_as_user,
Glyph = "\xE7EE",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.U,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand All @@ -324,7 +324,7 @@ public List<ContextMenuResult> ContextMenus(string queryArguments, IPublicAPI ap
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.wox_plugin_program_open_containing_folder,
Glyph = "\xE838",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.E,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand All @@ -340,7 +340,7 @@ public List<ContextMenuResult> ContextMenus(string queryArguments, IPublicAPI ap
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.wox_plugin_program_open_in_console,
Glyph = "\xE756",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = (context) =>
Expand Down
4 changes: 2 additions & 2 deletions src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.wox_plugin_cmd_run_as_administrator,
Glyph = "\xE7EF",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.Enter,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = c =>
Expand All @@ -464,7 +464,7 @@ public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
Title = Properties.Resources.wox_plugin_cmd_run_as_user,
Glyph = "\xE7EE",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = Key.U,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ internal static List<ContextMenuResult> GetContextMenuResults(in Result result)
{
AcceleratorKey = Key.F4,
AcceleratorModifiers = ModifierKeys.Control,
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
Glyph = "\xE8BB", // E8B8 => Symbol: ChromeClose
Title = $"{Resources.wox_plugin_windowwalker_Close} (Ctrl+F4)",
Action = _ =>
Expand All @@ -58,7 +58,7 @@ internal static List<ContextMenuResult> GetContextMenuResults(in Result result)
{
AcceleratorKey = Key.Delete,
AcceleratorModifiers = ModifierKeys.Control,
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
Glyph = "\xE74D", // E74D => Symbol: Delete
Title = $"{Resources.wox_plugin_windowwalker_Kill} (Ctrl+Delete)",
Action = _ => KillProcessCommand(windowData),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
menuItems.Add(new ContextMenuResult
{
// https://learn.microsoft.com/windows/apps/design/style/segoe-ui-symbol-font
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
Glyph = "\xF739", // ECC9 => Symbol: RemoveFrom, or F739 => SetHistoryStatus2
Title = $"Remove this from history",
Action = _ =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public List<ContextMenuResult> CreateContextMenuResults()
{
Title = Resources.Action_Run_As_Administrator,
Glyph = "\xE7EF",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = System.Windows.Input.Key.Enter,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand All @@ -73,7 +73,7 @@ public List<ContextMenuResult> CreateContextMenuResults()
{
Title = Resources.Action_Run_As_Administrator,
Glyph = "\xE7EF",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = System.Windows.Input.Key.Enter,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand All @@ -92,7 +92,7 @@ public List<ContextMenuResult> CreateContextMenuResults()
{
Title = Resources.Action_Open_Settings,
Glyph = "\xE713",
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = System.Windows.Input.Key.S,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ internal static List<ContextMenuResult> GetContextMenu(Result result, string ass
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control,
Action = _ => TryToCopyToClipBoard(entry.GetRegistryKey()),
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
Glyph = "\xE8C8", // E8C8 => Symbol: Copy
PluginName = assemblyName,
Title = $"{Resources.CopyKeyNamePath} (Ctrl+C)",
Expand All @@ -54,7 +54,7 @@ internal static List<ContextMenuResult> GetContextMenu(Result result, string ass
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
Action = _ => TryToCopyToClipBoard(entry.GetValueData()),
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
Glyph = "\xF413", // F413 => Symbol: CopyTo
PluginName = assemblyName,
Title = $"{Resources.CopyValueData} (Ctrl+Shift+C)",
Expand All @@ -65,7 +65,7 @@ internal static List<ContextMenuResult> GetContextMenu(Result result, string ass
AcceleratorKey = Key.C,
AcceleratorModifiers = ModifierKeys.Control,
Action = _ => TryToCopyToClipBoard(entry.GetValueNameWithKey()),
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
Glyph = "\xE8C8", // E8C8 => Symbol: Copy
PluginName = assemblyName,
Title = $"{Resources.CopyValueName} (Ctrl+C)",
Expand All @@ -77,7 +77,7 @@ internal static List<ContextMenuResult> GetContextMenu(Result result, string ass
AcceleratorKey = Key.Enter,
AcceleratorModifiers = ModifierKeys.Control,
Action = _ => TryToOpenInRegistryEditor(entry),
FontFamily = "Segoe MDL2 Assets",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
Glyph = "\xE8A7", // E8A7 => Symbol: OpenInNewWindow
PluginName = assemblyName,
Title = $"{Resources.OpenKeyInRegistryEditor} (Ctrl+Enter)",
Expand Down
Loading
Loading