mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Fix restart confirmation box cancel.
This commit is contained in:
parent
616d099c07
commit
bcbd97e515
1 changed files with 2 additions and 1 deletions
|
@ -394,11 +394,12 @@ void SetupInterfaceScale(
|
||||||
Local::writeSettings();
|
Local::writeSettings();
|
||||||
Core::Restart();
|
Core::Restart();
|
||||||
});
|
});
|
||||||
const auto cancelled = crl::guard(button, [=] {
|
const auto cancelled = crl::guard(button, [=](Fn<void()> close) {
|
||||||
base::call_delayed(
|
base::call_delayed(
|
||||||
st::defaultSettingsSlider.duration,
|
st::defaultSettingsSlider.duration,
|
||||||
button,
|
button,
|
||||||
[=] { repeatSetScale(cConfigScale(), repeatSetScale); });
|
[=] { repeatSetScale(cConfigScale(), repeatSetScale); });
|
||||||
|
close();
|
||||||
});
|
});
|
||||||
window->show(Ui::MakeConfirmBox({
|
window->show(Ui::MakeConfirmBox({
|
||||||
.text = tr::lng_settings_need_restart(),
|
.text = tr::lng_settings_need_restart(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue