- Removed skin: 'ElvUI Frame Style BW'.

- Added new skin: 'ElvUI Style II'.
- The tooltip for Scale option under options panel, now shows the real value for the scale.
This commit is contained in:
tercio
2014-12-21 22:09:05 -02:00
parent 7c5a420349
commit ecc5c3da7e
10 changed files with 279 additions and 224 deletions
+2 -2
View File
@@ -485,6 +485,7 @@ function _G._detalhes:Start()
--test realtime dps
--[[
local floor = floor
local real_time_frame = CreateFrame ("frame", nil, UIParent)
local instance = _detalhes:GetInstance (1)
real_time_frame:SetScript ("OnUpdate", function (self, elapsed)
@@ -496,9 +497,8 @@ function _G._detalhes:Start()
local actor = row.minha_tabela
if (actor) then
local dps_text = row.ps_text
if (dps_text) then
local new_dps = math.floor (actor.total / (GetTime() - instance.showing.start_time_float))
local new_dps = floor (actor.total / instance.showing:GetCombatTime())
local formated_dps = _detalhes.ToKFunctions [_detalhes.ps_abbreviation] (_, new_dps)
row.texto_direita:SetText (row.texto_direita:GetText():gsub (dps_text, formated_dps))