mirror of https://github.com/procxx/kepka.git
Allow custom lang loading using Alt+Shift+Click.
This commit is contained in:
parent
9b449a1d26
commit
fdfc767930
|
@ -37,7 +37,12 @@ void SetupLanguageButton(
|
||||||
icon ? &st::settingsIconLanguage : nullptr);
|
icon ? &st::settingsIconLanguage : nullptr);
|
||||||
const auto guard = Ui::AttachAsChild(button, base::binary_guard());
|
const auto guard = Ui::AttachAsChild(button, base::binary_guard());
|
||||||
button->addClickHandler([=] {
|
button->addClickHandler([=] {
|
||||||
*guard = LanguageBox::Show();
|
const auto m = button->clickModifiers();
|
||||||
|
if ((m & Qt::ShiftModifier) && (m & Qt::AltModifier)) {
|
||||||
|
Lang::CurrentCloudManager().switchToLanguage(qsl("custom"));
|
||||||
|
} else {
|
||||||
|
*guard = LanguageBox::Show();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue