(&self, control: &dyn Element, e: &mut MouseEvent)
| 262 | } |
| 263 | |
| 264 | fn unmark_control(&self, control: &dyn Element, e: &mut MouseEvent) { |
| 265 | if control.is_marked() { |
| 266 | control.unmark(); |
| 267 | |
| 268 | if control.mouse_input() { |
| 269 | control.mouseleave(e); |
| 270 | } |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | fn mark_control(&self, control: &dyn Element, e: &mut MouseEvent) { |
| 275 | if !control.is_marked() { |
no test coverage detected