Update Client.java

This commit is contained in:
kirillsaint 2023-11-08 01:28:38 +06:00
parent 41d9ff1ee4
commit 1a3ef80d00
1 changed files with 1 additions and 0 deletions

View File

@ -222,6 +222,7 @@ public class Client {
globalSettings.setLite(new JSONObject(content.toString()).getBoolean("lite")); globalSettings.setLite(new JSONObject(content.toString()).getBoolean("lite"));
globalSettings.setDisplayedTutorial(new JSONObject(content.toString()).getBoolean("displayedTutorial")); globalSettings.setDisplayedTutorial(new JSONObject(content.toString()).getBoolean("displayedTutorial"));
globalSettings.setConfigsMigrated(new JSONObject(content.toString()).getBoolean("configsMigrated")); globalSettings.setConfigsMigrated(new JSONObject(content.toString()).getBoolean("configsMigrated"));
globalSettings.setPacksPanoramaEnabled(new JSONObject(content.toString()).getBoolean("packsPanoramaEnabled"));
Client.getInstance().updateWindowTitle(); Client.getInstance().updateWindowTitle();
in.close(); in.close();
} catch (Exception err) { } catch (Exception err) {