From d7aab6c4ec9618bcb75fc523f54bf3b1946bef82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Wed, 27 Aug 2025 10:55:34 +0200 Subject: [PATCH] Remove leftover code in `selector` module --- selector/src/lib.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/selector/src/lib.rs b/selector/src/lib.rs index 18142882..b8081178 100644 --- a/selector/src/lib.rs +++ b/selector/src/lib.rs @@ -146,18 +146,3 @@ where format!("custom selector: {}", std::any::type_name_of_val(self)) } } - -// pub fn inspect(position: Point) -> impl Selector { -// visible(move |target: Target<'_>, visible_bounds: Rectangle| { -// visible_bounds -// .contains(position) -// .then(|| Match::from_target(target)) -// }) -// } - -// pub fn visible( -// f: impl Fn(Target<'_>, Rectangle) -> Option, -// ) -> impl Selector { -// todo!() -// } -//