From 9d4d3cc5e3e408d64e7b002c08a620454e35e274 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 7 Oct 2018 23:16:23 +0300 Subject: [PATCH] Show toast when reloading templates (support). --- Telegram/SourceFiles/settings/settings_chat.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Telegram/SourceFiles/settings/settings_chat.cpp b/Telegram/SourceFiles/settings/settings_chat.cpp index f29f597cc..e7ae0aedb 100644 --- a/Telegram/SourceFiles/settings/settings_chat.cpp +++ b/Telegram/SourceFiles/settings/settings_chat.cpp @@ -19,6 +19,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "ui/widgets/checkbox.h" #include "ui/widgets/labels.h" #include "ui/effects/radial_animation.h" +#include "ui/toast/toast.h" #include "lang/lang_keys.h" #include "window/themes/window_theme_editor.h" #include "window/themes/window_theme.h" @@ -962,11 +963,18 @@ void SetupSupport(not_null container) { AddSkip(inner, st::settingsCheckboxesSkip); + const auto subscription = Ui::AttachAsChild(inner, rpl::lifetime()); AddButton( inner, rpl::single(qsl("Reload templates")), st::settingsButton )->addClickHandler([=] { + *subscription = Auth().supportTemplates()->errors( + ) | rpl::start_with_next([=](QStringList errors) { + Ui::Toast::Show(errors.isEmpty() + ? "Templates reloaded!" + : ("Errors:\n\n" + errors.join("\n\n"))); + }); Auth().supportTemplates()->reload(); }); AddSkip(inner);