Skip to content

Commit

Permalink
Fix maximum size constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
lmcintyre committed Feb 18, 2024
1 parent ff41511 commit b4ee345
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Orchestrion/Orchestrion.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
<PluginVersion>2.2.0.1</PluginVersion>
<PluginVersion>2.2.0.2</PluginVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Orchestrion/UI/Windows/MainWindow/MainWindow.Root.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public MainWindow(OrchestrionPlugin orch) : base(BaseName, ImGuiWindowFlags.NoSc
SizeConstraints = new WindowSizeConstraints
{
MinimumSize = new Vector2(370, 400),
MaximumSize = ImGuiHelpers.MainViewport.Size,
MaximumSize = new Vector2(float.MaxValue, float.MaxValue),
};
}

Expand Down

0 comments on commit b4ee345

Please sign in to comment.