From 867947c2c502c62757f4160d516bcb6ab9723991 Mon Sep 17 00:00:00 2001 From: George Brocklehurst Date: Sun, 20 Jul 2025 11:40:33 +0100 Subject: [PATCH] Move downtime move tooltip. (#385) This commit moves the downtown dialog's move tooltip to the right of the move. Previously it was above the move, which would obscure other items in the list and the number of already selected moves in the header. --- module/documents/tooltipManager.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/documents/tooltipManager.mjs b/module/documents/tooltipManager.mjs index e622059d..005f77bd 100644 --- a/module/documents/tooltipManager.mjs +++ b/module/documents/tooltipManager.mjs @@ -40,7 +40,7 @@ export default class DhTooltipManager extends foundry.helpers.interaction.Toolti this.tooltip.innerHTML = html; options.direction = this._determineItemTooltipDirection( element, - this.constructor.TOOLTIP_DIRECTIONS.UP + this.constructor.TOOLTIP_DIRECTIONS.RIGHT ); }