chore: remove β from option

This commit is contained in:
AlexeyZavar 2025-01-31 00:27:19 +03:00
parent 51122ab3ba
commit e3ebb30518

View file

@ -48,6 +48,13 @@
class PainterHighQualityEnabler;
rpl::producer<QString> asBeta(rpl::producer<QString> text) {
return std::move(text) | rpl::map([=](const QString &val)
{
return val + " β";
});
}
not_null<Ui::RpWidget*> AddInnerToggle(not_null<Ui::VerticalLayout*> container,
const style::SettingsButton &st,
std::vector<not_null<Ui::AbstractCheckView*>> innerCheckViews,
@ -1461,10 +1468,7 @@ void SetupMarks(not_null<Ui::VerticalLayout*> container) {
AddButtonWithIcon(
container,
tr::ayu_ReplaceMarksWithIcons() | rpl::map([=](QString val)
{
return val + " β";
}),
tr::ayu_ReplaceMarksWithIcons(),
st::settingsButtonNoIcon
)->toggleOn(
rpl::single(settings->replaceBottomInfoWithIcons)