File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -333,34 +333,29 @@ private void InitializeNotifyIcon()
333333 Icon = Constant . Version == "1.0.0" ? Properties . Resources . dev : Properties . Resources . app ,
334334 Visible = ! _settings . HideNotifyIcon
335335 } ;
336-
337336 var openIcon = new FontIcon { Glyph = "\ue71e " } ;
338337 var open = new MenuItem
339338 {
340339 Header = InternationalizationManager . Instance . GetTranslation ( "iconTrayOpen" ) + " (" +
341340 _settings . Hotkey + ")" ,
342341 Icon = openIcon
343342 } ;
343+ var gamemodeIcon = new FontIcon { Glyph = "\ue7fc " } ;
344344 var gamemode = new MenuItem
345345 {
346346 Header = InternationalizationManager . Instance . GetTranslation ( "GameMode" ) , Icon = gamemodeIcon
347347 } ;
348+ var positionresetIcon = new FontIcon { Glyph = "\ue73f " } ;
348349 var positionreset = new MenuItem
349350 {
350351 Header = InternationalizationManager . Instance . GetTranslation ( "PositionReset" ) , Icon = positionresetIcon
351352 } ;
352- var settingsIcon = new FontIcon
353- {
354- Glyph = "\ue713 "
355- } ;
353+ var settingsIcon = new FontIcon { Glyph = "\ue713 " } ;
356354 var settings = new MenuItem
357355 {
358356 Header = InternationalizationManager . Instance . GetTranslation ( "iconTraySettings" ) , Icon = settingsIcon
359357 } ;
360- var exitIcon = new FontIcon
361- {
362- Glyph = "\ue7e8 "
363- } ;
358+ var exitIcon = new FontIcon { Glyph = "\ue7e8 " } ;
364359 var exit = new MenuItem
365360 {
366361 Header = InternationalizationManager . Instance . GetTranslation ( "iconTrayExit" ) , Icon = exitIcon
You can’t perform that action at this time.
0 commit comments