@@ -113,8 +113,8 @@ function main:Init()
113113 self .showPublicBuilds = true
114114 self .showFlavourText = true
115115 self .showAnimations = true
116- self .errorReadingSettings = false
117- self .showAllItemAffixes = false
116+ self .showAllItemAffixes = true
117+ self .errorReadingSettings = false
118118
119119 if not SetDPIScaleOverridePercent then SetDPIScaleOverridePercent = function (scale ) end end
120120
@@ -655,10 +655,10 @@ function main:LoadSettings(ignoreBuild)
655655 if node .attrib .showFlavourText then
656656 self .showFlavourText = node .attrib .showFlavourText == " true"
657657 end
658- if node .attrib .showAnimations then
658+ if node .attrib .showAnimations then
659659 self .showAnimations = node .attrib .showAnimations == " true"
660660 end
661- if node .attrib .showAllItemAffixes then
661+ if node .attrib .showAllItemAffixes then
662662 self .showAllItemAffixes = node .attrib .showAllItemAffixes == " true"
663663 end
664664 if node .attrib .dpiScaleOverridePercent then
@@ -794,7 +794,7 @@ function main:SaveSettings()
794794 showPublicBuilds = tostring (self .showPublicBuilds ),
795795 showFlavourText = tostring (self .showFlavourText ),
796796 showAnimations = tostring (self .showAnimations ),
797- showAllItemAffixes = tostring (self .showAllItemAffixes ),
797+ showAllItemAffixes = tostring (self .showAllItemAffixes ),
798798 dpiScaleOverridePercent = tostring (self .dpiScaleOverridePercent ),
799799 } })
800800 local res , errMsg = common .xml .SaveXMLFile (setXML , self .userPath .. " Settings.xml" )
@@ -1099,7 +1099,7 @@ function main:OpenOptionsPopup()
10991099 controls .showPublicBuilds .state = self .showPublicBuilds
11001100 controls .showFlavourText .state = self .showFlavourText
11011101 controls .showAnimations .state = self .showAnimations
1102- controls .showAllItemAffixes .state = self .showAllItemAffixes
1102+ controls .showAllItemAffixes .state = self .showAllItemAffixes
11031103 local initialNodePowerTheme = self .nodePowerTheme
11041104 local initialColorPositive = self .colorPositive
11051105 local initialColorNegative = self .colorNegative
@@ -1121,7 +1121,7 @@ function main:OpenOptionsPopup()
11211121 local initialShowPublicBuilds = self .showPublicBuilds
11221122 local initialShowFlavourText = self .showFlavourText
11231123 local initialShowAnimations = self .showAnimations
1124- local initialShowAllItemAffixes = self .showAllItemAffixes
1124+ local initialShowAllItemAffixes = self .showAllItemAffixes
11251125 local initialDpiScaleOverridePercent = self .dpiScaleOverridePercent
11261126
11271127 -- last line with buttons has more spacing
@@ -1177,7 +1177,7 @@ function main:OpenOptionsPopup()
11771177 self .showPublicBuilds = initialShowPublicBuilds
11781178 self .showFlavourText = initialShowFlavourText
11791179 self .showAnimations = initialShowAnimations
1180- self .showAllItemAffixes = initialShowAllItemAffixes
1180+ self .showAllItemAffixes = initialShowAllItemAffixes
11811181 self .dpiScaleOverridePercent = initialDpiScaleOverridePercent
11821182 SetDPIScaleOverridePercent (self .dpiScaleOverridePercent )
11831183 main :ClosePopup ()
0 commit comments