| 10 | struct TextFieldCopyItem : ui::MenuItem { |
| 11 | WeakPtr<TextField> textField; |
| 12 | void onAction(const ActionEvent& e) override { |
| 13 | if (!textField) |
| 14 | return; |
| 15 | textField->copyClipboard(); |
| 16 | APP->event->setSelectedWidget(textField); |
| 17 | } |
| 18 | }; |
| 19 | |
| 20 |
nothing calls this directly
no test coverage detected