@@ -119,7 +119,6 @@ function main:Init()
119119 self .showAnimations = true
120120 self .showAllItemAffixes = true
121121 self .errorReadingSettings = false
122- self .showSplitPersonalityPath = true
123122
124123 if not SetDPIScaleOverridePercent then SetDPIScaleOverridePercent = function (scale ) end end
125124
@@ -630,9 +629,6 @@ function main:LoadSettings(ignoreBuild)
630629 self .dpiScaleOverridePercent = tonumber (node .attrib .dpiScaleOverridePercent ) or 0
631630 SetDPIScaleOverridePercent (self .dpiScaleOverridePercent )
632631 end
633- if node .attrib .showSplitPersonalityPath then
634- self .showSplitPersonalityPath = node .attrib .showSplitPersonalityPath == " true"
635- end
636632 end
637633 end
638634 end
@@ -765,7 +761,6 @@ function main:SaveSettings()
765761 showAnimations = tostring (self .showAnimations ),
766762 showAllItemAffixes = tostring (self .showAllItemAffixes ),
767763 dpiScaleOverridePercent = tostring (self .dpiScaleOverridePercent ),
768- showSplitPersonalityPath = tostring (self .showSplitPersonalityPath ),
769764 } })
770765 local res , errMsg = common .xml .SaveXMLFile (setXML , self .userPath .. " Settings.xml" )
771766 if not res then
@@ -1061,12 +1056,6 @@ function main:OpenOptionsPopup()
10611056 controls .invertSliderScrollDirection .tooltipText = " Default scroll direction is:\n Scroll Up = Move right\n Scroll Down = Move left"
10621057 controls .invertSliderScrollDirection .state = self .invertSliderScrollDirection
10631058
1064- nextRow ()
1065- controls .showSplitPersonalityPath = new (" CheckBoxControl" , { " TOPLEFT" , nil , " TOPLEFT" }, { defaultLabelPlacementX , currentY , 20 }, " ^7Show Split Personality paths:" , function (state )
1066- self .showSplitPersonalityPath = state
1067- end )
1068- controls .showSplitPersonalityPath .state = self .showSplitPersonalityPath
1069-
10701059 if launch .devMode then
10711060 nextRow ()
10721061 controls .disableDevAutoSave = new (" CheckBoxControl" , { " TOPLEFT" , nil , " TOPLEFT" }, { defaultLabelPlacementX , currentY , 20 }, " ^7Disable Dev AutoSave:" , function (state )
@@ -1107,7 +1096,6 @@ function main:OpenOptionsPopup()
11071096 local initialShowAnimations = self .showAnimations
11081097 local initialShowAllItemAffixes = self .showAllItemAffixes
11091098 local initialDpiScaleOverridePercent = self .dpiScaleOverridePercent
1110- local initialShowSplitPersonalityPath = self .showSplitPersonalityPath
11111099
11121100 -- last line with buttons has more spacing
11131101 nextRow (1.5 )
@@ -1166,7 +1154,6 @@ function main:OpenOptionsPopup()
11661154 self .showAllItemAffixes = initialShowAllItemAffixes
11671155 self .dpiScaleOverridePercent = initialDpiScaleOverridePercent
11681156 SetDPIScaleOverridePercent (self .dpiScaleOverridePercent )
1169- self .showSplitPersonalityPath = initialShowSplitPersonalityPath
11701157 main :ClosePopup ()
11711158 end )
11721159 nextRow (1.5 )
0 commit comments