Thread Tools Display Modes
12-18-13, 05:58 PM   #1
Mirrikh
A Flamescale Wyrmkin
 
Mirrikh's Avatar
AddOn Compiler - Click to view compilations
Join Date: Sep 2011
Posts: 111
Borders on addons disappearing

So, on random addons i have a border will just disappear and i'm not sure why or how to get them back.
  Reply With Quote
12-18-13, 09:18 PM   #2
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
If you want anyone to be able to help you, you're going to have to be more specific. What are the names of the addon(s) you are having this problem with? Are using another addon to add the borders? If so, which addon are you using to do that? If not, are the borders normally "just there" or did you add/change them in the addon's options?

Do you get any error messages? If not, do you have "Display Lua Errors" checked under Interface Options > Game tab > Help, or do you have BugSack or Swatter installed? If not either of those, either install BugSack (best) or enable the default game option (worst, but better than nothing).
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote
12-18-13, 11:27 PM   #3
Mirrikh
A Flamescale Wyrmkin
 
Mirrikh's Avatar
AddOn Compiler - Click to view compilations
Join Date: Sep 2011
Posts: 111
Qusemap, alDamageMeter.

I'm using aurora, but i wouldn't think it would affect those addons.

I haven't tried to change any of the border setting for them, just position. Also no lua error messages.
  Reply With Quote
12-18-13, 11:45 PM   #4
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Based on the screenshots on the download pages for those two addons (links: QuseMap, alDamageMeter) they don't have any border textures. If you're seeing borders other than the "plain black box" that's in those screenshots, it's coming from another addon. You can find out for sure in about 30 seconds, by disabling your other addons and logging in.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote
12-19-13, 12:11 AM   #5
Mirrikh
A Flamescale Wyrmkin
 
Mirrikh's Avatar
AddOn Compiler - Click to view compilations
Join Date: Sep 2011
Posts: 111
i turned off all addons but those, and the 1px black borders are still there so...
  Reply With Quote
12-19-13, 01:27 AM   #6
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Yes, that's what it should look like. If you're saying those are what are missing, then you'll need to enable your other addons one (or a few) at a time until the borders disappear, to figure out which addon is removing them.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote
12-19-13, 12:02 PM   #7
Mirrikh
A Flamescale Wyrmkin
 
Mirrikh's Avatar
AddOn Compiler - Click to view compilations
Join Date: Sep 2011
Posts: 111
but its not all of the borders that are disappearing, its just 1 side that is missing. And its missing both when i only have them loaded and when i have all my addons loaded.

edit: so i started fiddling around with size and position and the borders would come back and then disappear again. so i think it has something to do with that, but not sure why.

Last edited by Mirrikh : 12-19-13 at 01:55 PM.
  Reply With Quote
12-19-13, 02:05 PM   #8
Clamsoda
A Frostmaul Preserver
Join Date: Nov 2011
Posts: 269
You're experiencing pixel smudging. The issue is that there is a discrepancy between your UI scale, and the scale of whatever frame the pixel borders are "disappearing" on.

The gist of the situation is that some of your borders aren't being drawn on whole pixels.

For more information, do a search for "Pixel Perfect+WoW" or something to that effect.

You can force your frames to sit on whole pixels, fix your UI scale, or come up with a frame scale that compliments your UI scale.
  Reply With Quote
12-19-13, 02:11 PM   #9
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
Either disable the UI scaling option in System -> Advanced, or run the following script:

/run SetCVar("uiScale", 768/string.match(({GetScreenResolutions()})[GetCurrentResolution()], "%d+x(%d+)"))

This script forces your UI to a pixel perfect scale. I prefer this option, because disabling UI scaling can cause issues with frame positioning if you switch between windowed and fullscreen mode.
  Reply With Quote
12-20-13, 01:50 PM   #10
Mirrikh
A Flamescale Wyrmkin
 
Mirrikh's Avatar
AddOn Compiler - Click to view compilations
Join Date: Sep 2011
Posts: 111
well i tried running the script, it seemed to work, though now i need readjust my whole ui lol
  Reply With Quote
12-20-13, 03:18 PM   #11
MoonWitch
A Firelord
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 455
Originally Posted by Mirrikh View Post
well i tried running the script, it seemed to work, though now i need readjust my whole ui lol
Welcome to the world of pixel perfect ness.. And I've done that too Now, I actually have an add-on that runs that script ALWAYS before everything else, just because I otherwise forget to run it :P
  Reply With Quote
12-20-13, 07:37 PM   #12
Mirrikh
A Flamescale Wyrmkin
 
Mirrikh's Avatar
AddOn Compiler - Click to view compilations
Join Date: Sep 2011
Posts: 111
wait i have to re-input that script every login?
  Reply With Quote
12-21-13, 06:33 AM   #13
Wimpface
A Molten Giant
 
Wimpface's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 648
You shouldn't have to, your Config.wtf inside your WTF folder should hold your UI Scale setting.
__________________
All I see is strobe lights blinding me in my hindsight.
  Reply With Quote
12-21-13, 06:42 AM   #14
MoonWitch
A Firelord
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 455
Originally Posted by Mirrikh View Post
wait i have to re-input that script every login?
No, but I play on two different machines, and I keep my UI synced. Since I edit CVARS from an add-on directly, I have to.
  Reply With Quote
12-21-13, 12:46 PM   #15
Mirrikh
A Flamescale Wyrmkin
 
Mirrikh's Avatar
AddOn Compiler - Click to view compilations
Join Date: Sep 2011
Posts: 111
oh ok, well thanks everyone for the help
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Borders on addons disappearing


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off