| 21 | struct TextFieldCutItem : ui::MenuItem { |
| 22 | WeakPtr<TextField> textField; |
| 23 | void onAction(const ActionEvent& e) override { |
| 24 | if (!textField) |
| 25 | return; |
| 26 | textField->cutClipboard(); |
| 27 | APP->event->setSelectedWidget(textField); |
| 28 | } |
| 29 | }; |
| 30 | |
| 31 |
nothing calls this directly
no test coverage detected