From b2bb6a1c6e02b3c8cad282bfaffdc98ebb53dc9c Mon Sep 17 00:00:00 2001 From: Alan Savage Date: Fri, 20 Feb 2026 10:42:33 +0000 Subject: [PATCH] Sequence Editor: Text elements in a sequence have their origin shifted, making them scale incorrectly and causing a gap at the top of the frame #14043 https://github.com/YoYoGames/GameMaker-Bugs/issues/14043 --- scripts/yyRoom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/yyRoom.js b/scripts/yyRoom.js index 94c1fb4c..df962c1a 100644 --- a/scripts/yyRoom.js +++ b/scripts/yyRoom.js @@ -3340,7 +3340,7 @@ yyRoom.prototype.HandleSequenceText = function (_rect, _layer, _pSequenceEl, _no var pFontParams = _node.value.pFontEffectParams; - this.DrawTextItem(text, fontID, drawcol, a, frameWidth, frameHeight, alignment, wrap, wrapMode, charSpacing, lineSpacing, paraSpacing, pFontParams, true); + this.DrawTextItem(text, fontID, drawcol, a, frameWidth, frameHeight, alignment, wrap, wrapMode, charSpacing, lineSpacing, paraSpacing, pFontParams, false); }; // @endif sequences