Use sensible window minimum size limits in editor windows

This commit is contained in:
2025-04-13 15:37:37 +03:00
parent 2a2652302f
commit 16f06b5848
3 changed files with 3 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ namespace FlaxEngine
{
Position = new Float2(100, 100),
Size = new Float2(640, 480),
MinimumSize = Float2.One,
MinimumSize = new Float2(24, 24),
MaximumSize = Float2.Zero, // Unlimited size
StartPosition = WindowStartPosition.CenterParent,
HasBorder = true,