mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX] Правка логики работы дерева опциональных модов (#184)
При перезаходе в лаунчер и отключении основной опциональной модификации (от которой зависят другие) - эти же другие не отключались, что приводило к различным конфликтам.
This commit is contained in:
parent
df39276c2a
commit
c25e5a77aa
1 changed files with 1 additions and 1 deletions
|
@ -198,9 +198,9 @@ function verifyLauncher(e) {
|
||||||
}
|
}
|
||||||
overlay.swap(0, processing.overlay, function(event) makeProfilesRequest(function(result) {
|
overlay.swap(0, processing.overlay, function(event) makeProfilesRequest(function(result) {
|
||||||
settings.lastProfiles = result.profiles;
|
settings.lastProfiles = result.profiles;
|
||||||
options.load();
|
|
||||||
// Update profiles list and hide overlay
|
// Update profiles list and hide overlay
|
||||||
updateProfilesList(result.profiles);
|
updateProfilesList(result.profiles);
|
||||||
|
options.load();
|
||||||
overlay.hide(0, function() {
|
overlay.hide(0, function() {
|
||||||
if (cliParams.autoLogin) {
|
if (cliParams.autoLogin) {
|
||||||
goAuth(null);
|
goAuth(null);
|
||||||
|
|
Loading…
Reference in a new issue