From 5bccd010cb8f3958307cdf45cf85eda8fa2e0b08 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 27 Dec 2022 19:22:17 +0100 Subject: [PATCH] Code style fix --- Source/Editor/Modules/UIModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/Modules/UIModule.cs b/Source/Editor/Modules/UIModule.cs index 80f0bb97c..a0b9ca19b 100644 --- a/Source/Editor/Modules/UIModule.cs +++ b/Source/Editor/Modules/UIModule.cs @@ -738,7 +738,7 @@ namespace FlaxEditor.Modules return; // Find layout to use - var searchFolder = StringUtils.CombinePaths(Editor.LocalCachePath, "LayoutsCache") ; + var searchFolder = StringUtils.CombinePaths(Editor.LocalCachePath, "LayoutsCache"); if (!Directory.Exists(searchFolder)) Directory.CreateDirectory(searchFolder); var files = Directory.GetFiles(searchFolder, "Layout_*.xml", SearchOption.TopDirectoryOnly);