From 6ff7907edea01bb2cd31f6adc7b511727171347e Mon Sep 17 00:00:00 2001 From: Scott Sibley Date: Sun, 31 Jul 2011 05:15:07 -0500 Subject: [PATCH] Disable intersect checking in Bar and Histogram modules since it's very likely broken atm. --- Modules/Bars/Bars.lua | 3 +-- Modules/Histograms/Histograms.lua | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Modules/Bars/Bars.lua b/Modules/Bars/Bars.lua index fd93175..0db9a98 100644 --- a/Modules/Bars/Bars.lua +++ b/Modules/Bars/Bars.lua @@ -199,8 +199,7 @@ local optionsDefaults = { local intersectTimer local intersectUpdate = function() for i, w in ipairs(widgets) do - assert(type(w.IntersectUpdate) == "function", "widget.IntersectUpdate should be a function.") - w:IntersectUpdate() + --w:IntersectUpdate() end end diff --git a/Modules/Histograms/Histograms.lua b/Modules/Histograms/Histograms.lua index 3655e6a..ef91ceb 100644 --- a/Modules/Histograms/Histograms.lua +++ b/Modules/Histograms/Histograms.lua @@ -200,7 +200,7 @@ local optionsDefaults = { local intersectUpdate = function() for i, w in ipairs(widgets) do - w:IntersectUpdate() + --w:IntersectUpdate() end end -- 1.7.9.5