1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-10-05 16:57:12 +03:00
This commit is contained in:
Alisa Mylnikova 2020-08-04 18:31:19 +07:00
parent 56645212af
commit 50c322e9ac

View File

@ -78,7 +78,7 @@ open class Rect: Locus {
guard let other = other as? Rect else {
return false
}
return x == other.y
return x == other.x
&& y == other.y
&& w == other.w
&& h == other.h