Quantcast

Change offsets a bit

Scott Sibley [09-19-10 - 02:57]
Change offsets a bit
Filename
Modules/Debug.lua
Modules/Text.lua
diff --git a/Modules/Debug.lua b/Modules/Debug.lua
index 11e3bc3..3e90447 100644
--- a/Modules/Debug.lua
+++ b/Modules/Debug.lua
@@ -13,6 +13,7 @@ local environment = {}

 local core = LibCore:New(mod, environment, "StarTip.Debug", {["StarTip.Debug"] = {}})
 local objects = {}
+local defaults = {profile={debug=false}}
 local timer
 local cfg = {
 		enabled = true,
@@ -58,7 +59,6 @@ local plugin = {}
 LibStub("StarLibPluginString-1.0"):New(plugin)

 local function update()
-	do return end
 	for i, v in ipairs(objects) do
 		v:Del()
 	end
@@ -78,7 +78,9 @@ end

 function mod:OnEnable()
 	timer = timer or LibTimer:New("Debug timer", 1000, true, update)
-	timer:Start()
+	if false then
+		timer:Start()
+	end
 end

 function mod:OnDisable()
diff --git a/Modules/Text.lua b/Modules/Text.lua
index d7afb4c..051166f 100644
--- a/Modules/Text.lua
+++ b/Modules/Text.lua
@@ -68,7 +68,7 @@ else
     return UnitSelectionColor(unit)
 end
 ]],
-		cols = 50,
+		cols = 40,
 		align = WidgetText.ALIGN_PINGPONG,
 		update = 1000,
 		speed = 100,