(&self, control: &dyn Element, e: &mut MouseEvent)
| 272 | } |
| 273 | |
| 274 | fn mark_control(&self, control: &dyn Element, e: &mut MouseEvent) { |
| 275 | if !control.is_marked() { |
| 276 | if let Some(marked) = self.canvas.marked() { |
| 277 | self.reset_marked(marked.as_ref(), e); |
| 278 | } |
| 279 | control.mark(); |
| 280 | |
| 281 | if control.mouse_input() { |
| 282 | control.mouseenter(e); |
| 283 | } |
| 284 | } |
| 285 | } |
| 286 | } |
no test coverage detected