@@ -72,6 +72,16 @@ function B.CreateMiscCategory()
7272 -- Questing, Dialog & Objective Tracker
7373 local questingSection = GUI :AddSection (miscCategory , L [" GUI.Section.QuestingDialog" ])
7474 GUI :CreateSwitch (questingSection , " Misc.ExpRep" , L [" Display Exp/Rep Bar" ], L [" Misc.ExpRep Desc" ])
75+ local expRested = GUI :CreateSwitch (questingSection , " Misc.ExpRepShowRested" , L [" Show Rested Overlay" ], L [" Misc.ExpRepShowRested Desc" ])
76+ GUI :DependsOn (expRested , " Misc.ExpRep" , true )
77+ local expFade = GUI :CreateSwitch (questingSection , " Misc.ExpRepFade" , L [" Fade Exp/Rep Bar" ], L [" Misc.ExpRepFade Desc" ])
78+ GUI :DependsOn (expFade , " Misc.ExpRep" , true )
79+ local expFadeOpacity = GUI :CreateSlider (questingSection , " Misc.ExpRepFadeOpacity" , L [" Faded Opacity" ], 0 , 100 , 5 , L [" Misc.ExpRepFadeOpacity Desc" ])
80+ GUI :DependsOn (expFadeOpacity , " Misc.ExpRepFade" , true )
81+ local expFadeCombat = GUI :CreateSwitch (questingSection , " Misc.ExpRepFadeCombat" , L [" Show Exp/Rep in Combat" ], L [" Misc.ExpRepFadeCombat Desc" ])
82+ GUI :DependsOn (expFadeCombat , " Misc.ExpRepFade" , true )
83+ local expFadeTarget = GUI :CreateSwitch (questingSection , " Misc.ExpRepFadeTarget" , L [" Show Exp/Rep with Target" ], L [" Misc.ExpRepFadeTarget Desc" ])
84+ GUI :DependsOn (expFadeTarget , " Misc.ExpRepFade" , true )
7585 GUI :CreateSwitch (questingSection , " Misc.QuestTool" , L [" Quest Tips" ], L [" Misc.QuestTool Desc" ])
7686 GUI :CreateSwitch (questingSection , " Misc.ShowWowHeadLinks" , L [" Show Wowhead Links Above Questlog Frame" ], L [" Misc.ShowWowHeadLinks Desc" ])
7787 GUI :CreateSwitch (questingSection , " Misc.NoTalkingHead" , L [" Remove And Hide The TalkingHead Frame" ], L [" Misc.NoTalkingHead Desc" ])
0 commit comments