Fix unexpected wrapping

This commit is contained in:
Ben Olden-Cooligan 2023-04-16 14:35:44 -07:00
parent fbbdeb3a39
commit 61d5b5de7b

View File

@ -38,7 +38,7 @@ public class LinkNotificationView : NotificationView
};
}
protected override LayoutElement PrimaryContent => _label.DynamicWrap(180).MaxWidth(180);
protected override LayoutElement PrimaryContent => _label.DynamicWrap(180).MaxWidth(180).Scale();
protected override LayoutElement SecondaryContent => _link;