Skip to content

Commit

Permalink
==, not =
Browse files Browse the repository at this point in the history
  • Loading branch information
dnfield committed Oct 12, 2021
1 parent aa0d7ab commit 79379a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/render_picture.dart
Expand Up @@ -128,8 +128,8 @@ class RenderPicture extends RenderBox {
_picture = val;
assert(() {
if (_picture != null && _picture!.layerHandle.layer != null) {
assert(_picture!.layerHandle.layer!.isComplexHint = true);
assert(_picture!.layerHandle.layer!.willChangeHint = false);
assert(_picture!.layerHandle.layer!.isComplexHint == true);
assert(_picture!.layerHandle.layer!.willChangeHint == false);
}
return true;
}());
Expand Down

0 comments on commit 79379a3

Please sign in to comment.