| 32 | struct TextFieldPasteItem : ui::MenuItem { |
| 33 | WeakPtr<TextField> textField; |
| 34 | void onAction(const ActionEvent& e) override { |
| 35 | if (!textField) |
| 36 | return; |
| 37 | textField->pasteClipboard(); |
| 38 | APP->event->setSelectedWidget(textField); |
| 39 | } |
| 40 | }; |
| 41 | |
| 42 |
nothing calls this directly
no test coverage detected