From eb00c1d66469092b47a4f478318712cc68850f99 Mon Sep 17 00:00:00 2001 From: Scott Sibley Date: Sat, 23 Oct 2010 03:20:07 +0000 Subject: [PATCH] Bug fix --- Modules/Histograms/Histograms.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Histograms/Histograms.lua b/Modules/Histograms/Histograms.lua index c0411a6..350e5a1 100644 --- a/Modules/Histograms/Histograms.lua +++ b/Modules/Histograms/Histograms.lua @@ -215,7 +215,7 @@ function updateHistogram(widget) local r, g, b, a = widget.history[i][2], widget.history[i][3], widget.history[i][4] bar:SetStatusBarColor(r, g, b, a) elseif type(segment) == "number" then - bar:SetValue(0) --segment * 100) + bar:SetValue(segment * 100) bar:SetStatusBarColor(0, 0, 1, 1) end if not UnitExists(StarTip.unit) and not widget.config.alwaysShown then bar:Hide() end -- 1.7.9.5