(e: CustomEvent)
| 240 | // Receives a custom event dispatched when the user begins interactively editing with the text tool. |
| 241 | // We keep a copy of the text input element to check against when it's active for text entry. |
| 242 | export function onModifyInputField(e: CustomEvent) { |
| 243 | textToolInteractiveInputElement = e.detail; |
| 244 | } |
| 245 | |
| 246 | // Window events |
| 247 |