diff --git a/core/src/display_object/movie_clip.rs b/core/src/display_object/movie_clip.rs index ec7e20d3a..05c4f180f 100644 --- a/core/src/display_object/movie_clip.rs +++ b/core/src/display_object/movie_clip.rs @@ -2491,7 +2491,7 @@ impl<'gc> TDisplayObject<'gc> for MovieClip<'gc> { } else { clip_depth = child.clip_depth(); } - } else if child.depth() > clip_depth + } else if child.depth() >= clip_depth && child.hit_test_shape(context, point, options) { return true;