View Single Post
01-04-18, 06:01 PM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,879
Once you have the frame (bubbleframe here) you can use:
Lua Code:
  1. for i = 1, select("#", bubbleframe:GetRegions()) do
  2.     local region = select(i, bubbleframe:GetRegions())
  3.     if region:GetObjectType() == "FontString" then
  4.         region:SetShadowOffset(2, -2)
  5.     end
  6. end

Personally I can't figure out when/why the system will use protected chat bubble frames or not.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.
  Reply With Quote