From 40e400fdca43f2f0666f047834defce18743e0c4 Mon Sep 17 00:00:00 2001 From: George Brocklehurst Date: Sun, 20 Jul 2025 11:14:21 +0100 Subject: [PATCH] Move downtime move tooltip. 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 ); }