diff --git a/Assets/Scripts/Game/UserInterfaceWindows/DaggerfallBookReaderWindow.cs b/Assets/Scripts/Game/UserInterfaceWindows/DaggerfallBookReaderWindow.cs index 9991f1c9f1..23e9574d8d 100644 --- a/Assets/Scripts/Game/UserInterfaceWindows/DaggerfallBookReaderWindow.cs +++ b/Assets/Scripts/Game/UserInterfaceWindows/DaggerfallBookReaderWindow.cs @@ -318,6 +318,7 @@ void LayoutBookLabels() foreach (TextLabel label in bookLabels) { label.Position = new Vector2(x, y); + label.Parent = pagePanel; // Establish parent scale before measuring wrapped text. label.MaxWidth = (int)pagePanel.Size.x; label.RectRestrictedRenderArea = pagePanel.RectRestrictedRenderArea; label.RestrictedRenderAreaCoordinateType = TextLabel.RestrictedRenderArea_CoordinateType.ParentCoordinates;