diff --git a/Source/Editor/GUI/Docking/DockWindow.cs b/Source/Editor/GUI/Docking/DockWindow.cs index 5e94ef547..1a28b1307 100644 --- a/Source/Editor/GUI/Docking/DockWindow.cs +++ b/Source/Editor/GUI/Docking/DockWindow.cs @@ -59,7 +59,10 @@ namespace FlaxEditor.GUI.Docking /// /// Gets the default window size. /// - public virtual Vector2 DefaultSize => new Vector2(900, 580); + /// + /// Scaled by the DPI, because the window should be large enough for its content on every monitor + /// + public virtual Vector2 DefaultSize => new Vector2(900, 580) * DpiScale; /// /// Gets the serialization typename.