Skip to content

Commit

Permalink
Fix a bug with Hero talent popup, attempt number 3 :) (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
Numynum committed Aug 23, 2024
1 parent f2ca661 commit da8411f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion BlizzMove.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1333,7 +1333,10 @@ do
frame:SetMovable(backup);
end
startStopMoving(_G.HeroTalentsSelectionDialog);
PlayerSpellsFrame:HookScript('OnShow', startStopMoving);
PlayerSpellsFrame:HookScript('OnShow', function(frame)
startStopMoving(frame);
RunNextFrame(function() startStopMoving(frame); end);
end);
end

if addOnName == self.name then
Expand Down

0 comments on commit da8411f

Please sign in to comment.