We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c53daf commit 36ff3efCopy full SHA for 36ff3ef
AOS/app/src/main/java/boostcamp/and07/mindsync/ui/view/NodeView.kt
@@ -257,12 +257,8 @@ class NodeView(
257
)
258
} else {
259
return (
260
- x in (node.path.centerX - node.path.radius).toPx(context)..(node.path.centerX + node.path.radius).toPx(
261
- context,
262
- ) &&
263
- y in (node.path.centerY - node.path.radius).toPx(context)..(node.path.centerY + node.path.radius).toPx(
264
265
- )
+ x in (node.path.centerX - node.path.radius).toPx(context)..(node.path.centerX + node.path.radius).toPx(context) &&
+ y in (node.path.centerY - node.path.radius).toPx(context)..(node.path.centerY + node.path.radius).toPx(context)
266
267
}
268
0 commit comments