(&self, e: &mut TextEvent)
| 92 | } |
| 93 | |
| 94 | fn textinput(&self, e: &mut TextEvent) { |
| 95 | if let Some(focused) = self.canvas.focused() { |
| 96 | if focused.key_input() { |
| 97 | focused.textinput(e); |
| 98 | } |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | fn mousedown(&self, e: &mut MouseEvent) { |
| 103 | if let Some(focused) = self.canvas.focused() { |