- changed all step = 10 to step = 1 by request

- widened range of possible vertical offset values for the custom counter module by request
This commit is contained in:
Parnic
2010-09-18 07:04:38 +00:00
parent 0b3ec943b0
commit 05afcebc3d
12 changed files with 24 additions and 24 deletions

View File

@ -118,7 +118,7 @@ Expand "|cffffdc42Module Settings|r", expand PlayerInfo (or TargetInfo for targe
end, end,
min = -700, min = -700,
max = 700, max = 700,
step = 10, step = 1,
order = 11 order = 11
}, },
@ -134,7 +134,7 @@ Expand "|cffffdc42Module Settings|r", expand PlayerInfo (or TargetInfo for targe
end, end,
min = -2000, min = -2000,
max = 2000, max = 2000,
step = 10, step = 1,
order = 12 order = 12
}, },

View File

@ -35,7 +35,7 @@ function IceClassPowerCounter.prototype:GetOptions()
end, end,
min = -300, min = -300,
max = 300, max = 300,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,
@ -55,7 +55,7 @@ function IceClassPowerCounter.prototype:GetOptions()
end, end,
min = -500, min = -500,
max = 500, max = 500,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,

View File

@ -38,7 +38,7 @@ function ComboPoints.prototype:GetOptions()
end, end,
min = -300, min = -300,
max = 200, max = 200,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,
@ -58,7 +58,7 @@ function ComboPoints.prototype:GetOptions()
end, end,
min = -700, min = -700,
max = 700, max = 700,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,

View File

@ -204,9 +204,9 @@ function IceCustomCount.prototype:GetOptions()
self.moduleSettings.vpos = v self.moduleSettings.vpos = v
self:Redraw() self:Redraw()
end, end,
min = -300, min = -400,
max = 200, max = 700,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,
@ -226,7 +226,7 @@ function IceCustomCount.prototype:GetOptions()
end, end,
min = -700, min = -700,
max = 700, max = 700,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,

View File

@ -32,7 +32,7 @@ function LacerateCount.prototype:GetOptions()
end, end,
min = -300, min = -300,
max = 200, max = 200,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,
@ -52,7 +52,7 @@ function LacerateCount.prototype:GetOptions()
end, end,
min = -700, min = -700,
max = 700, max = 700,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,

View File

@ -32,7 +32,7 @@ function MaelstromCount.prototype:GetOptions()
end, end,
min = -300, min = -300,
max = 200, max = 200,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,

View File

@ -61,7 +61,7 @@ function RangeCheck.prototype:GetOptions()
end, end,
min = -300, min = -300,
max = 600, max = 600,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,
@ -81,7 +81,7 @@ function RangeCheck.prototype:GetOptions()
end, end,
min = -500, min = -500,
max = 500, max = 500,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,

View File

@ -52,7 +52,7 @@ function Runes.prototype:GetOptions()
end, end,
min = -300, min = -300,
max = 300, max = 300,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,
@ -72,7 +72,7 @@ function Runes.prototype:GetOptions()
end, end,
min = -500, min = -500,
max = 500, max = 500,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,

View File

@ -32,7 +32,7 @@ function SunderCount.prototype:GetOptions()
end, end,
min = -300, min = -300,
max = 200, max = 200,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,

View File

@ -124,7 +124,7 @@ function IceTargetInfo.prototype:GetOptions()
end, end,
min = -300, min = -300,
max = 600, max = 600,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,
@ -144,7 +144,7 @@ function IceTargetInfo.prototype:GetOptions()
end, end,
min = -500, min = -500,
max = 500, max = 500,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,

View File

@ -41,7 +41,7 @@ function TargetOfTarget.prototype:GetOptions()
end, end,
min = -600, min = -600,
max = 600, max = 600,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,
@ -61,7 +61,7 @@ function TargetOfTarget.prototype:GetOptions()
end, end,
min = -500, min = -500,
max = 500, max = 500,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,

View File

@ -57,7 +57,7 @@ function Totems.prototype:GetOptions()
end, end,
min = -300, min = -300,
max = 300, max = 300,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,
@ -77,7 +77,7 @@ function Totems.prototype:GetOptions()
end, end,
min = -500, min = -500,
max = 500, max = 500,
step = 10, step = 1,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled
end, end,