We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 606f939 commit 37e4aabCopy full SHA for 37e4aab
1 file changed
LuaMenu/widgets/chobby/components/configuration.lua
@@ -516,6 +516,11 @@ function Configuration:SetConfigData(data)
516
end
517
518
519
+ if (self.lobbySettingsVersion or 0) < 1 then
520
+ self.settingsMenuValues.InterfaceScale = nil -- Reset the setting
521
+ end
522
+ self.lobbySettingsVersion = 1
523
+
524
if (self.settingsVersion or 0) < settingsVersion then
525
for key, value in pairs(onlyIfOutdated) do
526
self.game_settings[key] = value
@@ -619,6 +624,7 @@ function Configuration:GetConfigData()
619
624
steamReleasePopupSeen = self.steamReleasePopupSeen,
620
625
campaignConfigName = self.campaignConfigName,
621
626
settingsVersion = self.settingsVersion,
627
+ lobbySettingsVersion = self.lobbySettingsVersion,
622
628
}
623
629
630
0 commit comments