Commit 35bd448b authored by Jason Simmons's avatar Jason Simmons

Merge pull request #1729 from jason-simmons/mixed_viewport_lock

Fix a type mismatch in IconThemeData.operator==
parents fa8c4515 82887696
......@@ -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;
......
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