Thread: Anyone alive?
View Single Post
08-23-20, 10:14 AM   #5
Bethan
A Deviate Faerie Dragon
 
Bethan's Avatar
Join Date: May 2009
Posts: 16
In case anyone else is still using OpenRDX, as far as I'm concerned 9.0 mosly broke BlizzFullDisable that I already had mostly disabled anyway (I use RDX on top of the default UI), and the obvious backdrop changed (see here ) that I fixed basically looking for instances of VFLUI.CreateFramePool() and either adding
Code:
"BackdropTemplate"
as a fourth argument to the CreateFrame call in the fallback handler or adding
Code:
Mixin(f,BackdropTemplateMixin)
just after the CreateFrame call. I also had to change a few call to
Code:
x:SetBackdrop(nil)
into
Code:
if(x.SetBackdrop) then x:SetBackdrop(nil) end
in a few cleanup functions

Don't hesitate to send me a message if you need help getting things working
  Reply With Quote