mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 06:50:54 +07:00
[jupyter] PY-87558 Jupyter: Output from PyMC blinks
GitOrigin-RevId: ae756c26e23bd753ea654f910320cf25db7b4a17
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f77d25d9e5
commit
e832b421e6
@@ -23,6 +23,7 @@ object NotebookUiUtils {
|
||||
}
|
||||
|
||||
fun Rectangle.intersectsEvenIfEmpty(other: Rectangle): Boolean {
|
||||
return this.intersects(other) || (this.isEmpty && other.contains(this)) || (other.isEmpty && this.contains(other))
|
||||
return this.intersects(other) || (this.isEmpty && other.contains(Point(x, y))) || (other.isEmpty && this.contains(Point(other.x,
|
||||
other.y)))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user