diff --git a/Content.Client/GameObjects/EntitySystems/ExamineSystem.cs b/Content.Client/GameObjects/EntitySystems/ExamineSystem.cs index 63186bfa26..79640c0aa3 100644 --- a/Content.Client/GameObjects/EntitySystems/ExamineSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/ExamineSystem.cs @@ -71,7 +71,7 @@ namespace Content.Client.GameObjects.EntitySystems var popupPos = _userInterfaceManager.MousePositionScaled; // Actually open the tooltip. - _examineTooltipOpen = new Popup(); + _examineTooltipOpen = new Popup { MaxWidth = 400}; _userInterfaceManager.ModalRoot.AddChild(_examineTooltipOpen); var panel = new PanelContainer(); panel.AddStyleClass(StyleClassEntityTooltip);