Skip to content

Commit

Permalink
Feature: Reduced minimum window dimensions (#16283)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaira2 authored Sep 30, 2024
1 parent 593d11e commit b454edf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Files.App/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public MainWindow()
InitializeComponent();

WindowHandle = WinUIEx.WindowExtensions.GetWindowHandle(this);
MinHeight = 416;
MinWidth = 516;
MinHeight = 316;
MinWidth = 416;
ExtendsContentIntoTitleBar = true;
Title = "Files";
AppWindow.TitleBar.ButtonBackgroundColor = Colors.Transparent;
Expand Down

0 comments on commit b454edf

Please sign in to comment.