diff --git a/masonry/src/widget/image.rs b/masonry/src/widget/image.rs index 5a1b3395b..019984d6e 100644 --- a/masonry/src/widget/image.rs +++ b/masonry/src/widget/image.rs @@ -23,7 +23,9 @@ use crate::{ /// /// The underlying image uses `Arc` for buffer data, making it cheap to clone. /// -/// This currently uses bilinear interpolation, which falls down when the image is larger than the +/// This currently uses bilinear interpolation, which falls down when the image is +/// larger than its layout size (e.g. it is in a [sized box](super::SizedBox) smaller +/// than the image size). pub struct Image { image_data: ImageBuf, fill: FillStrat,