Skip to content

Commit

Permalink
Make app always on top
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgDangl committed May 21, 2024
1 parent 7f5a2ae commit b3c01ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/IPA.Bcfier.App/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public static async Task Main(string[] args)
Icon = Path.Combine(Directory.GetCurrentDirectory(), "bcfier.png"),
Height = 800,
Width = 1200,
AutoHideMenuBar = true
AutoHideMenuBar = true,
AlwaysOnTop = true
};
var window = await Electron.WindowManager.CreateWindowAsync(browserWindowOptions);

Expand Down

0 comments on commit b3c01ce

Please sign in to comment.