| 723 | } |
| 724 | |
| 725 | void View::onCutPressed() { |
| 726 | std::string path = state->getSelectedChildPath(); |
| 727 | state->setClipboard(path, true); |
| 728 | LOGGER.info("Cut to clipboard: {}", path); |
| 729 | onNavigate(); |
| 730 | update(); |
| 731 | } |
| 732 | |
| 733 | void View::onPastePressed() { |
| 734 | auto clipboard = state->getClipboard(); |
no test coverage detected