Thread: 5.4 Ptr
View Single Post
07-27-13, 02:38 PM   #2
Bethan
A Deviate Faerie Dragon
 
Bethan's Avatar
Join Date: May 2009
Posts: 16
disclaimer : I am not a dev from RDX, I don't really understand how RDX is working, I just try changing "random" stuff to make it work and worked out this fix that work in my case, I do not claim that it work for everyone nor that it's the best way to fix it.

this is the hack I used to fix this on the ptr (and rdx seem to be working normaly afterward) :

in the Interface/Addon/RDX/PanelMgr/ClassicMenuBar.lua

line 184 :

txtpower:SetFont("Interface\\Addons\\RDX_mediapack\\sharedmedia\\fonts\\Acme7W.ttf", 8);

change to :

txtpower:SetFont("Fonts\\FRIZQT__.TTF",8);
txtpower:SetFont("Interface\\Addons\\RDX_mediapack\\sharedmedia\\fonts\\Acme7W.ttf", 8);


line 194

txtrdx:SetFont("Interface\\Addons\\RDX_mediapack\\sharedmedia\\fonts\\Adventure.ttf", 20);

change to :

txtrdx:SetFont("Fonts\\FRIZQT__.TTF",20);
txtrdx:SetFont("Interface\\Addons\\RDX_mediapack\\sharedmedia\\fonts\\Adventure.ttf", 20);


(in the end it should "just" add two line in the file).
Ideally, wait for sigg to make a "real" fix though.
  Reply With Quote