From 06a7c7a05cb7b12e0a08ecbeacc2eaad6d0968b7 Mon Sep 17 00:00:00 2001 From: Parnic Date: Wed, 8 Apr 2009 02:23:07 +0000 Subject: [PATCH] - increased the min/max vertical offset for bars by request - fixed a minor typo in the maelstrom counter options - removed extraneous function from the custom bar --- IceBarElement.lua | 4 ++-- modules/CustomBar.lua | 4 ---- modules/MaelstromCount.lua | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/IceBarElement.lua b/IceBarElement.lua index b987d2c..5634bec 100644 --- a/IceBarElement.lua +++ b/IceBarElement.lua @@ -280,8 +280,8 @@ function IceBarElement.prototype:GetOptions() type='range', name = '|c' .. self.configColor .. 'Bar vertical offset|r', desc = 'Adjust the vertical placement of this bar', - min = -100, - max = 100, + min = -400, + max = 400, step = 1, get = function() return self.moduleSettings.barVerticalOffset diff --git a/modules/CustomBar.lua b/modules/CustomBar.lua index 1a3f4ed..c16e52b 100644 --- a/modules/CustomBar.lua +++ b/modules/CustomBar.lua @@ -213,10 +213,6 @@ function IceCustomBar.prototype:GetBarColor() return self.moduleSettings.barColor.r, self.moduleSettings.barColor.g, self.moduleSettings.barColor.b end -function IceCustomBar.prototype:CreateFrame() - IceCustomBar.super.prototype.CreateFrame(self) -end - -- 'Protected' methods -------------------------------------------------------- function IceCustomBar.prototype:GetAuraDuration(unitName, buffName) diff --git a/modules/MaelstromCount.lua b/modules/MaelstromCount.lua index 4444b44..d34941f 100644 --- a/modules/MaelstromCount.lua +++ b/modules/MaelstromCount.lua @@ -85,7 +85,7 @@ function MaelstromCount.prototype:GetOptions() opts["maelstromGap"] = { type = 'range', name = 'Maelstrom gap', - desc = 'Spacing between each maelstromGap point (only works for graphical mode)', + desc = 'Spacing between each maelstrom point (only works for graphical mode)', min = 0, max = 100, step = 1,