mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-09-01 23:25:15 +00:00
Added mute in top bar option
This commit is contained in:
@@ -2469,4 +2469,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
"ktg_settings_filters_hide_edit" = "Hide Edit button";
|
"ktg_settings_filters_hide_edit" = "Hide Edit button";
|
||||||
"ktg_settings_filters_hide_folder_names" = "Compact folders";
|
"ktg_settings_filters_hide_folder_names" = "Compact folders";
|
||||||
|
|
||||||
|
"ktg_settings_top_bar_mute" = "Mute in profile top bar";
|
||||||
|
|
||||||
// Keys finished
|
// Keys finished
|
||||||
|
@@ -104,5 +104,6 @@
|
|||||||
"ktg_settings_filters": "Папки",
|
"ktg_settings_filters": "Папки",
|
||||||
"ktg_settings_filters_only_unmuted_counter": "Не считать чаты без уведомлений",
|
"ktg_settings_filters_only_unmuted_counter": "Не считать чаты без уведомлений",
|
||||||
"ktg_settings_filters_hide_edit": "Скрыть кнопку изменения",
|
"ktg_settings_filters_hide_edit": "Скрыть кнопку изменения",
|
||||||
"ktg_settings_filters_hide_folder_names": "Компактные папки"
|
"ktg_settings_filters_hide_folder_names": "Компактные папки",
|
||||||
|
"ktg_settings_top_bar_mute": "Уведомления вверху профиля"
|
||||||
}
|
}
|
||||||
|
@@ -173,6 +173,20 @@ void SetupKotatoChats(not_null<Ui::VerticalLayout*> container) {
|
|||||||
KotatoSettings::Write();
|
KotatoSettings::Write();
|
||||||
}, container->lifetime());
|
}, container->lifetime());
|
||||||
|
|
||||||
|
AddButton(
|
||||||
|
container,
|
||||||
|
tr::ktg_settings_top_bar_mute(),
|
||||||
|
st::settingsButton
|
||||||
|
)->toggleOn(
|
||||||
|
rpl::single(cProfileTopBarNotifications())
|
||||||
|
)->toggledValue(
|
||||||
|
) | rpl::filter([](bool enabled) {
|
||||||
|
return (enabled != cProfileTopBarNotifications());
|
||||||
|
}) | rpl::start_with_next([](bool enabled) {
|
||||||
|
cSetProfileTopBarNotifications(enabled);
|
||||||
|
KotatoSettings::Write();
|
||||||
|
}, container->lifetime());
|
||||||
|
|
||||||
AddButton(
|
AddButton(
|
||||||
container,
|
container,
|
||||||
tr::ktg_settings_fonts(),
|
tr::ktg_settings_fonts(),
|
||||||
|
Reference in New Issue
Block a user