- Testing new sort method on Cooldowns and Customs, this is a try to fix the row changing places when actors have the same amount done.

- Minimalistic is now the skin default used by Details! after its instalation.
- Many improvements over Default Skin, Minimalistic Skin and ElvUI Frame Style Skin.
- Added 'Logos' and 'Raid & Dungeons' sections for Wallpapers.
- Added a option to load a image from the computer to use as wallpaper.
- Revamp on Image Editor, many bugs solves and now it is usable.
- Few tweaks done on shortcut panel, now the buttons they are smaller and the panel can hold more.
- Fixed 'While in Combat' hiding schema.
- Fixed the report window alert when opening the report window and it already is opened.
- Fixed the gap between last row created and the end of the window.
- Fixed all tooltips bugs on Wallpaper Section on Options Panel.
This commit is contained in:
tercio
2014-06-25 16:11:19 -03:00
parent c36f87a3b6
commit 7632bcdaec
23 changed files with 545 additions and 141 deletions
+3 -3
View File
@@ -957,8 +957,8 @@ end
--local skin = fazer aqui o esquema de resgatar a skin salva no profile.
new_instance:ChangeSkin ("Minimalistic")
new_instance:ChangeSkin ("Default Skin")
new_instance:ChangeSkin ("Minimalistic")
--> apply standard skin if have one saved
if (_detalhes.standard_skin) then
@@ -2333,7 +2333,7 @@ function _detalhes:monta_relatorio (este_relatorio, custom)
if (_thisActor) then
local amount = _thisActor [keyName]
local amount = _math_floor (_thisActor [keyName])
local name = _thisActor.nome.." "
if (_detalhes.remove_realm_from_name and name:find ("-")) then
@@ -2442,7 +2442,7 @@ function _detalhes:monta_relatorio (este_relatorio, custom)
for i = container_amount, this_amt, -1 do
local _thisActor = container [i]
local amount = _thisActor [keyName]
local amount = _math_floor (_thisActor [keyName])
local name = _thisActor.nome.." "