View Single Post
01-14-07, 10:45 PM   #65
dracula
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 7
[AdSpace] Options inversed

As posted to you by e-mail, here's again the description of the bug:

If you open the options window (/ads) and check all the options, none of the tooltip information is displayed. And if you uncheck all options, all tooltip info is added. Obviously this is not according to the options' description.

For example, the option checkbox says "Add info to tooltips for Librams" and it controls a variable "NoLibrams", so there is NO libram information when it's enabled.

Suggested fix:
AdSpace.lua (line 738): Replace with
Code:
button:SetChecked(not FAS_Config["No"..option]);
AdSpace.lua (line 748): Replace with
Code:
FAS_Config["No"..option] = not this:GetChecked();
  Reply With Quote