| 801 | } |
| 802 | |
| 803 | void BrowserLayout::fsItems_DefaultKey(const std::string &item) { |
| 804 | const auto full_item = this->cur_exp->FullPathFor(item); |
| 805 | const auto pres_full_item = this->cur_exp->FullPresentablePathFor(item); |
| 806 | if(this->cur_exp->NavigateForward(full_item)) { |
| 807 | g_EntryIndexStack.push(this->browse_menu->GetSelectedIndex()); |
| 808 | this->UpdateElements(); |
| 809 | } |
| 810 | else { |
| 811 | this->OnFileSelected(item, full_item, pres_full_item); |
| 812 | } |
| 813 | } |
| 814 | |
| 815 | void BrowserLayout::fsItems_Y(const std::string &item) { |
| 816 | const auto full_item = this->cur_exp->FullPathFor(item); |
no test coverage detected