| 450 | void onAction(const ActionEvent& e) override; |
| 451 | |
| 452 | void step() override { |
| 453 | text = string::translate("Browser.zoom"); |
| 454 | text += string::f("%.0f%%", std::pow(2.f, settings::browserZoom) * 100.f); |
| 455 | ChoiceButton::step(); |
| 456 | } |
| 457 | }; |
| 458 | |
| 459 |