Merge pull request #1729 from jason-simmons/mixed_viewport_lock

Fix a type mismatch in IconThemeData.operator==
This commit is contained in:
Jason Simmons 2015-10-21 17:37:05 -07:00
commit 35bd448bdd

View File

@ -12,7 +12,7 @@ class IconThemeData {
if (other is! IconThemeData)
return false;
final IconThemeData typedOther = other;
return color == typedOther;
return color == typedOther.color;
}
int get hashCode => color.hashCode;