@@ -105,7 +105,7 @@ function UIConfig:SetupConfigInterface()
105105 -- Checkboxes
106106 CSC_ConfigFrame .chkBtnUseBlizzardBlockValue = CreateFrame (" CheckButton" , " default" , CSC_ConfigFrame , " UICheckButtonTemplate" );
107107 CSC_ConfigFrame .chkBtnUseBlizzardBlockValue :SetPoint (" TOPLEFT" , 20 , - 30 );
108- CSC_ConfigFrame .chkBtnUseBlizzardBlockValue .text :SetText (" Use alternative Block Value calculation (Blizzard function)" );
108+ CSC_ConfigFrame .chkBtnUseBlizzardBlockValue .Text :SetText (" Use alternative Block Value calculation (Blizzard function)" );
109109 CSC_ConfigFrame .chkBtnUseBlizzardBlockValue :SetChecked (UISettingsGlobal .useBlizzardBlockValue );
110110 CSC_ConfigFrame .chkBtnUseBlizzardBlockValue :SetScript (" OnClick" ,
111111 function ()
@@ -114,7 +114,7 @@ function UIConfig:SetupConfigInterface()
114114
115115 CSC_ConfigFrame .chkBtnShowADStats = CreateFrame (" CheckButton" , " default" , CSC_ConfigFrame , " UICheckButtonTemplate" );
116116 CSC_ConfigFrame .chkBtnShowADStats :SetPoint (" TOPLEFT" , 20 , - 55 );
117- CSC_ConfigFrame .chkBtnShowADStats .text :SetText (" Show AP and SP stats from Argent Dawn items." );
117+ CSC_ConfigFrame .chkBtnShowADStats .Text :SetText (" Show AP and SP stats from Argent Dawn items." );
118118 CSC_ConfigFrame .chkBtnShowADStats :SetChecked (UISettingsCharacter .showStatsFromArgentDawnItems );
119119 CSC_ConfigFrame .chkBtnShowADStats :SetScript (" OnClick" ,
120120 function ()
@@ -124,31 +124,31 @@ function UIConfig:SetupConfigInterface()
124124 -- Side Stats frame options
125125 CSC_ConfigFrame .chkBtnShowSideStatsMelee = CreateFrame (" CheckButton" , " default" , CSC_ConfigFrame , " UICheckButtonTemplate" );
126126 CSC_ConfigFrame .chkBtnShowSideStatsMelee :SetPoint (" TOPLEFT" , 20 , - 110 );
127- CSC_ConfigFrame .chkBtnShowSideStatsMelee .text :SetText (" Show Melee Category in the side stats window (Requires UI reload)" );
127+ CSC_ConfigFrame .chkBtnShowSideStatsMelee .Text :SetText (" Show Melee Category in the side stats window (Requires UI reload)" );
128128 CSC_ConfigFrame .chkBtnShowSideStatsMelee :SetChecked (UISettingsCharacter .showSideStatsMelee );
129129 CSC_ConfigFrame .chkBtnShowSideStatsMelee :SetScript (" OnClick" ,
130130 function ()
131131 UISettingsCharacter .showSideStatsMelee = not UISettingsCharacter .showSideStatsMelee ;
132132 end );
133133 CSC_ConfigFrame .chkBtnShowSideStatsRanged = CreateFrame (" CheckButton" , " default" , CSC_ConfigFrame , " UICheckButtonTemplate" );
134134 CSC_ConfigFrame .chkBtnShowSideStatsRanged :SetPoint (" TOPLEFT" , 20 , - 135 );
135- CSC_ConfigFrame .chkBtnShowSideStatsRanged .text :SetText (" Show Ranged Category in the side stats window (Requires UI reload)" );
135+ CSC_ConfigFrame .chkBtnShowSideStatsRanged .Text :SetText (" Show Ranged Category in the side stats window (Requires UI reload)" );
136136 CSC_ConfigFrame .chkBtnShowSideStatsRanged :SetChecked (UISettingsCharacter .showSideStatsRanged );
137137 CSC_ConfigFrame .chkBtnShowSideStatsRanged :SetScript (" OnClick" ,
138138 function ()
139139 UISettingsCharacter .showSideStatsRanged = not UISettingsCharacter .showSideStatsRanged ;
140140 end );
141141 CSC_ConfigFrame .chkBtnShowSideStatsSpell = CreateFrame (" CheckButton" , " default" , CSC_ConfigFrame , " UICheckButtonTemplate" );
142142 CSC_ConfigFrame .chkBtnShowSideStatsSpell :SetPoint (" TOPLEFT" , 20 , - 160 );
143- CSC_ConfigFrame .chkBtnShowSideStatsSpell .text :SetText (" Show Spell Category in the side stats window (Requires UI reload)" );
143+ CSC_ConfigFrame .chkBtnShowSideStatsSpell .Text :SetText (" Show Spell Category in the side stats window (Requires UI reload)" );
144144 CSC_ConfigFrame .chkBtnShowSideStatsSpell :SetChecked (UISettingsCharacter .showSideStatsSpell );
145145 CSC_ConfigFrame .chkBtnShowSideStatsSpell :SetScript (" OnClick" ,
146146 function ()
147147 UISettingsCharacter .showSideStatsSpell = not UISettingsCharacter .showSideStatsSpell ;
148148 end );
149149 CSC_ConfigFrame .chkBtnShowSideStatsDefense = CreateFrame (" CheckButton" , " default" , CSC_ConfigFrame , " UICheckButtonTemplate" );
150150 CSC_ConfigFrame .chkBtnShowSideStatsDefense :SetPoint (" TOPLEFT" , 20 , - 185 );
151- CSC_ConfigFrame .chkBtnShowSideStatsDefense .text :SetText (" Show Defense Category in the side stats window (Requires UI reload)" );
151+ CSC_ConfigFrame .chkBtnShowSideStatsDefense .Text :SetText (" Show Defense Category in the side stats window (Requires UI reload)" );
152152 CSC_ConfigFrame .chkBtnShowSideStatsDefense :SetChecked (UISettingsCharacter .showSideStatsDefense );
153153 CSC_ConfigFrame .chkBtnShowSideStatsDefense :SetScript (" OnClick" ,
154154 function ()
0 commit comments