diff --git a/OpenDreamClient/Interface/Controls/ControlWindow.cs b/OpenDreamClient/Interface/Controls/ControlWindow.cs index 0d72be6dde..de4bb4b7f5 100644 --- a/OpenDreamClient/Interface/Controls/ControlWindow.cs +++ b/OpenDreamClient/Interface/Controls/ControlWindow.cs @@ -341,7 +341,7 @@ public override void SetProperty(string property, string value, bool manualWinse if (_myWindow.osWindow is {ClydeWindow: not null}) { var size = new DMFPropertySize(value); var uiScale = _configurationManager.GetCVar(CVars.DisplayUIScale); - size.X = (int)(size.X * uiScale); + size.X = (int)(size.X * uiScale); // TODO: RT should probably do this itself size.Y = (int)(size.Y * uiScale); _myWindow.osWindow.ClydeWindow.Size = size.Vector; }