Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
theripper93 committed Dec 13, 2021
1 parent eeb1c8e commit cf19256
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/ExtendedCombatHud.js
Original file line number Diff line number Diff line change
Expand Up @@ -1103,10 +1103,10 @@ class CombatHudCanvasElement extends BasePlaceableHUD {

toggleMacroPlayers(togg) {
if (togg || !game.settings.get("enhancedcombathud", "hideMacroPlayers")) {
$("#players").show(500);
$("#players")[0].style.visibility = "visible";
$("#hotbar").show(500);
} else {
$("#players").hide(500);
$("#players")[0].style.visibility = "hidden";
$("#hotbar").hide(500);
}
}
Expand Down

0 comments on commit cf19256

Please sign in to comment.