Skip to content

Commit

Permalink
History: missing parens around check made a disabled window reappear
Browse files Browse the repository at this point in the history
  • Loading branch information
kemayo committed Aug 2, 2024
1 parent 2fdbb6f commit 945d07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion History/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ function module:CreateWindow()
if
(C_PetBattles and C_PetBattles.IsInBattle()) or
(not db.combat and InCombatLockdown()) or
size == 0 and not db.empty
(size == 0 and not db.empty)
then
self:Hide()
else
Expand Down

0 comments on commit 945d07e

Please sign in to comment.