From f5959e01c5bb3148528e912fbff199899d7f10b7 Mon Sep 17 00:00:00 2001 From: Scott Sibley Date: Sat, 30 Jul 2011 05:34:36 -0500 Subject: [PATCH] Make default intersectRate 1 second. --- StarTip.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/StarTip.lua b/StarTip.lua index 215a513..5ef54ad 100644 --- a/StarTip.lua +++ b/StarTip.lua @@ -189,7 +189,7 @@ local defaults = { otherFrameShow = 1, errorLevel = 2, throttleVal = 0, - intersectRate = 500, + intersectRate = 1000, modifierInverse = false, message = true } @@ -345,7 +345,7 @@ local options = { get = function() return StarTip.db.profile.message end, set = function(info, v) StarTip.db.profile.message = v end, order = 13 - },--[[ + }, intersectRate = { name = L["Intersect Checks Rate"], desc = L["The rate at which intersecting frames will be checked"], @@ -354,7 +354,7 @@ local options = { get = function() return tostring(StarTip.db.profile.intersectRate) end, set = function(info, v) StarTip.db.profile.intersectRate = tonumber(v) end, order = 13 - }]] + } } } } -- 1.7.9.5