From 1920038b66309311ba5771d975663edb6f7e40ec Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Tue, 25 Mar 2025 13:56:37 -0700 Subject: [PATCH] Add text size measurements. --- Adventures in Lestoria/AdventuresInLestoria.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Adventures in Lestoria/AdventuresInLestoria.cpp b/Adventures in Lestoria/AdventuresInLestoria.cpp index 082f402f..ce532f27 100644 --- a/Adventures in Lestoria/AdventuresInLestoria.cpp +++ b/Adventures in Lestoria/AdventuresInLestoria.cpp @@ -2173,6 +2173,8 @@ void AiL::RenderCooldowns(){ a.iconMouseoverTime+=GetElapsedTime(); if(a.iconMouseoverTime>=1.5f){ const std::string abilityTooltipText{std::format("{}\n{}",GetPlayer())}; + const vi2d abilityTooltipSize{GetTextSizeProp(abilityTooltipText)+vi2d{6,6}}; //Add 3 pixel padding to the edges of the tooltip. + } };