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()
333
333
Icon = Constant . Version == "1.0.0" ? Properties . Resources . dev : Properties . Resources . app ,
334
334
Visible = ! _settings . HideNotifyIcon
335
335
} ;
336
-
337
336
var openIcon = new FontIcon { Glyph = "\ue71e " } ;
338
337
var open = new MenuItem
339
338
{
340
339
Header = InternationalizationManager . Instance . GetTranslation ( "iconTrayOpen" ) + " (" +
341
340
_settings . Hotkey + ")" ,
342
341
Icon = openIcon
343
342
} ;
343
+ var gamemodeIcon = new FontIcon { Glyph = "\ue7fc " } ;
344
344
var gamemode = new MenuItem
345
345
{
346
346
Header = InternationalizationManager . Instance . GetTranslation ( "GameMode" ) , Icon = gamemodeIcon
347
347
} ;
348
+ var positionresetIcon = new FontIcon { Glyph = "\ue73f " } ;
348
349
var positionreset = new MenuItem
349
350
{
350
351
Header = InternationalizationManager . Instance . GetTranslation ( "PositionReset" ) , Icon = positionresetIcon
351
352
} ;
352
- var settingsIcon = new FontIcon
353
- {
354
- Glyph = "\ue713 "
355
- } ;
353
+ var settingsIcon = new FontIcon { Glyph = "\ue713 " } ;
356
354
var settings = new MenuItem
357
355
{
358
356
Header = InternationalizationManager . Instance . GetTranslation ( "iconTraySettings" ) , Icon = settingsIcon
359
357
} ;
360
- var exitIcon = new FontIcon
361
- {
362
- Glyph = "\ue7e8 "
363
- } ;
358
+ var exitIcon = new FontIcon { Glyph = "\ue7e8 " } ;
364
359
var exit = new MenuItem
365
360
{
366
361
Header = InternationalizationManager . Instance . GetTranslation ( "iconTrayExit" ) , Icon = exitIcon
You can’t perform that action at this time.
0 commit comments