From 090e7c6447f34927fd2fa3c6e4553991667bb622 Mon Sep 17 00:00:00 2001 From: Mtax <53999273+Mtax-Development@users.noreply.github.com> Date: Wed, 5 Jan 2022 11:57:00 +0100 Subject: [PATCH] | TextRenderer: Minor whitespace consistency change --- scripts/TextRenderer/TextRenderer.gml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/TextRenderer/TextRenderer.gml b/scripts/TextRenderer/TextRenderer.gml index 8730730e..44a25ba5 100644 --- a/scripts/TextRenderer/TextRenderer.gml +++ b/scripts/TextRenderer/TextRenderer.gml @@ -54,8 +54,7 @@ function TextRenderer() constructor font = ((instanceof(_other.font) == "Font") ? new Font(_other.font.ID) : _other.font); location = ((instanceof(_other.location) == "Vector2") - ? new Vector2(_other.location) - : _other.location); + ? new Vector2(_other.location) : _other.location); align = ((instanceof(_other.align) == "TextAlign") ? new TextAlign(_other.align) : _other.align); color = _other.color;