(&self, control: &dyn Element, e: &mut MouseEvent)
| 238 | } |
| 239 | |
| 240 | fn reset_marked(&self, control: &dyn Element, e: &mut MouseEvent) { |
| 241 | if control.is_marked() { |
| 242 | self.unmark_control(control, e); |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | fn get_focusable(&self, x: f32, y: f32) -> Option<&Box<dyn Element>> { |
| 247 | if let Some(captured) = self.canvas.captured() { |
no test coverage detected