Skip to content

Commit

Permalink
fix: 修复升级后导致的图标显示异常
Browse files Browse the repository at this point in the history
  • Loading branch information
N0I0C0K committed Dec 9, 2023
1 parent f08fa75 commit 17042ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Translater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -331,12 +331,12 @@ public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
{
new ContextMenuResult
{
Title = "Copy (Enter); Copy Subtitle(shift+Enter)",
Title = "Copy (Enter), Subtitle(shift+Enter)",
Action = context=>{
UtilsFun.SetClipboardText(selectedResult.SubTitle);
return false;
},
Glyph = "\u2B1A",
Glyph = "\xF413",
PluginName="PowerTranslator",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = System.Windows.Input.Key.Return,
Expand All @@ -349,7 +349,7 @@ public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
this.translateHelper?.Read(selectedResult.Title);
return false;
},
Glyph = "\u23F5",
Glyph = "\xEDB5",
PluginName="PowerTranslator",
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
AcceleratorKey = System.Windows.Input.Key.Return,
Expand Down

0 comments on commit 17042ba

Please sign in to comment.