in hot-reload-devtools-api/src/main/kotlin/org/jetbrains/compose/devtools/api/WindowsState.kt [63:73]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other !is WindowState) return false
if (other.hashCode() != hashCode) return false
if (this.x != other.x) return false
if (this.y != other.y) return false
if (this.width != other.width) return false
if (this.height != other.height) return false
if (this.isAlwaysOnTop != other.isAlwaysOnTop) return false
return true
}