Commit 7af81f20 authored by Adam Barth's avatar Adam Barth

Fix typos in RenderImage

This function took innerConstraints as an argument but used constraints internally.
parent 40b2a4e5
......@@ -1296,7 +1296,7 @@ class RenderImage extends RenderBox {
return _cachedPaint;
}
Size _sizeForConstraints(BoxConstraints innerConstraints) {
Size _sizeForConstraints(BoxConstraints constraints) {
// If there's no image, we can't size ourselves automatically
if (_image == null) {
double width = requestedSize.width == null ? 0.0 : requestedSize.width;
......@@ -1304,7 +1304,7 @@ class RenderImage extends RenderBox {
return constraints.constrain(new Size(width, height));
}
if (!innerConstraints.isTight) {
if (!constraints.isTight) {
// If neither height nor width are specified, use inherent image
// dimensions. If only one dimension is specified, adjust the
// other dimension to maintain the aspect ratio. In both cases,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment