Skip to content

Commit c28a37a

Browse files
committed
Fix build issue
1 parent 9c1ff85 commit c28a37a

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

Flow.Launcher/MainWindow.xaml.cs

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)