- Added an option to disable the all-displays window (right click on title bar).

- Added an option to suppress segment changes after killing a boss encounter (experimental).
- Fixed an issue with bar animations starting from the middle of the bar.
- Fixed buffs and spell cast start on weakauras creator tool.
This commit is contained in:
Tercio
2015-10-15 12:19:35 -03:00
parent 9f5d387938
commit f9271a6921
18 changed files with 432 additions and 142 deletions
+11
View File
@@ -281,6 +281,17 @@
end
end
function _detalhes.table.overwrite (t1, t2)
for key, value in pairs (t2) do
if (type (value) == "table") then
t1 [key] = t1 [key] or {}
_detalhes.table.overwrite (t1 [key], t2 [key])
else
t1 [key] = value
end
end
end
function _detalhes.table.dump (t, s, deep)
s = s or ""