| 380 | } |
| 381 | |
| 382 | void View::onRenamePressed() { |
| 383 | std::string entry_name = state->getSelectedChildEntry(); |
| 384 | LOGGER.info("Pending rename {}", entry_name); |
| 385 | state->setPendingAction(State::ActionRename); |
| 386 | inputdialog::start("Rename", "", entry_name); |
| 387 | } |
| 388 | |
| 389 | void View::onDeletePressed() { |
| 390 | std::string file_path = state->getSelectedChildPath(); |
no test coverage detected