WoWInterface SVN NaturCombatTimers

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 21 to Rev 22
    Reverse comparison

Rev 21 → Rev 22

trunk/NaturOptions/NaturOptions.lua
80,6 → 80,18
addon.group:RegisterBar("Testing"..i, "Testing NaturCombat Bar #"..i, 10, nil, "Interface\\Icons\\Spell_Holy_HolyProtection", 0, 1, 0);
end
end);
local sound = self:CreateCheckBox("Killing Blow Sounds", p, "Turn on/off sounds when you get a killing blow.");
sound:SetScript("OnShow", function(self)
self:SetChecked(NaturDB.Sounds);
end);
sound:SetScript("OnClick", function(self)
if (self:GetChecked()) then
NaturDB.Sounds = true;
else
NaturDB.Sounds = false;
end
end);
sound:SetPoint("TOPLEFT", dr, "BOTTOMLEFT", 0, 0);
return p;
end
----------------------------------------------------------------------------------------------------