mirror of https://github.com/procxx/kepka.git
Fix applying langpacks from file.
This commit is contained in:
parent
9c579e0d5b
commit
95208267de
|
@ -434,6 +434,9 @@ void CloudManager::requestLanguageAndSwitch(
|
||||||
if (LanguageIdOrDefault(_langpack.id()) == id) {
|
if (LanguageIdOrDefault(_langpack.id()) == id) {
|
||||||
Ui::show(Box<InformBox>(lang(lng_language_already)));
|
Ui::show(Box<InformBox>(lang(lng_language_already)));
|
||||||
return;
|
return;
|
||||||
|
} else if (id == qstr("#custom")) {
|
||||||
|
performSwitchToCustom();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
request(_switchingToLanguageRequest).cancel();
|
request(_switchingToLanguageRequest).cancel();
|
||||||
|
|
Loading…
Reference in New Issue