| 436 | void onAction(const ActionEvent& e) override; |
| 437 | |
| 438 | void step() override { |
| 439 | text = string::translate("Browser.sort"); |
| 440 | text += getSortNames()[settings::browserSort]; |
| 441 | text = string::ellipsize(text, 20); |
| 442 | ChoiceButton::step(); |
| 443 | } |
| 444 | }; |
| 445 | |
| 446 |
nothing calls this directly
no test coverage detected