View Single Post
12-29-20, 05:21 PM   #6
Vrul
A Scalebane Royal Guard
 
Vrul's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2007
Posts: 404
Lua Code:
  1. local regions = { QuestMapFrame.DetailsFrame.RewardsFrame:GetRegions() }
  2. for index = 1, #regions do
  3.     local region = regions[index]
  4.     if region:GetObjectType() == "FontString" and region:GetText() == REWARDS then
  5.         region:SetText("My custom header")
  6.     end
  7. end
  Reply With Quote