- Default width for death window is now 350 (up from 300).

- Use new animations is now enabled by default and will be applied to all users immediately.
- Increased the amount the spells shown on the tooltip from 5 to 6.
- The option to use the new animations has been removed from the options panel.
- Fixed an issue with TinyThreat plugin where sometimes it trow errors.
This commit is contained in:
Tercio
2018-01-12 10:36:46 -02:00
parent 7c6675a200
commit 5adc522454
5 changed files with 32 additions and 24 deletions
+9 -1
View File
@@ -83,6 +83,7 @@ function _G._detalhes:Start()
self:InitializeOptionsWindow()
self:InitializeAuraCreationWindow()
self:InitializeCustomDisplayWindow()
self:InitializeAPIWindow()
--> bookmarks
if (self.switch.InitSwitch) then
@@ -1671,7 +1672,14 @@ function _G._detalhes:Start()
C_Timer.After (2, reset_player_detail_window)
end
_detalhes.tooltip.tooltip_max_abilities = 5
--enforce to show 6 abilities on the tooltip
_detalhes.tooltip.tooltip_max_abilities = 6
--enforce to use the new animation code
if (_detalhes.streamer_config) then
_detalhes.streamer_config.use_animation_accel = true
end
end
_detalhes.AddOnLoadFilesTime = GetTime()