From 9a2bd9472bed8273c376be9e18992122032ea3d4 Mon Sep 17 00:00:00 2001 From: Lubos Lenco Date: Mon, 21 Feb 2022 14:38:50 +0100 Subject: [PATCH] Apply checkstyle --- Sources/arm/ui/UINodes.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/arm/ui/UINodes.hx b/Sources/arm/ui/UINodes.hx index a414cc09..f4314687 100644 --- a/Sources/arm/ui/UINodes.hx +++ b/Sources/arm/ui/UINodes.hx @@ -1,7 +1,7 @@ package arm.ui; -import kha.Color; import haxe.Json; +import kha.Color; import kha.Image; import kha.System; import zui.Zui; @@ -285,7 +285,7 @@ class UINodes { if (selected != null && selected.type == "RGB") { if (menuButton(uiMenu, tr("Add Swatch"))) { var color = selected.outputs[0].default_value; - var newSwatch = Project.makeSwatch(Color.fromFloats(color[0],color[1],color[2],color[3])); + var newSwatch = Project.makeSwatch(Color.fromFloats(color[0], color[1], color[2], color[3])); Context.setSwatch(newSwatch); Project.raw.swatches.push(newSwatch); UIStatus.inst.statusHandle.redraws = 1;