1. #1
    Stood in the Fire Tyranader's Avatar
    10+ Year Old Account
    Join Date
    Oct 2012
    Location
    England
    Posts
    411

    Adding a border to the font of the DBM/VEM Timer bars.

    Does anybody know how I can add an outline to the font of the timer bar in VEM/DBM (in the green rectangle).


  2. #2
    Search for DBT.lua in your addons folder, open it with a text editor and search for "SetFont" and then add "OUTLINE" to these parts:

    Code:
    	name:SetFont(self.owner.options.Font, self.owner.options.FontSize, "OUTLINE")
    	timer:SetFont(self.owner.options.Font, self.owner.options.FontSize, "OUTLINE")
    http://wowprogramming.com/docs/widge...stance/SetFont

    Hope that works! At least it did in test mode.

  3. #3
    Stood in the Fire Tyranader's Avatar
    10+ Year Old Account
    Join Date
    Oct 2012
    Location
    England
    Posts
    411
    Quote Originally Posted by Ibis View Post
    Search for DBT.lua in your addons folder, open it with a text editor and search for "SetFont" and then add "OUTLINE" to these parts:

    Code:
    	name:SetFont(self.owner.options.Font, self.owner.options.FontSize, "OUTLINE")
    	timer:SetFont(self.owner.options.Font, self.owner.options.FontSize, "OUTLINE")
    http://wowprogramming.com/docs/widge...stance/SetFont

    Hope that works! At least it did in test mode.
    Cheers. It worked : D!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •