Skip to content

Commit

Permalink
fix(macOS): minimize window button
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpinedam committed Mar 14, 2021
1 parent 610085f commit 3846938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.UI/UI/Xaml/Window.macOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public sealed partial class Window

public Window()
{
var style = NSWindowStyle.Closable | NSWindowStyle.Resizable | NSWindowStyle.Titled;
var style = NSWindowStyle.Closable | NSWindowStyle.Resizable | NSWindowStyle.Titled | NSWindowStyle.Miniaturizable;
var rect = new CoreGraphics.CGRect(100, 100, 1024, 768);
_window = new Uno.UI.Controls.Window(rect, style, NSBackingStore.Buffered, false);

Expand Down

0 comments on commit 3846938

Please sign in to comment.