From dc3c6c199dfd26f4b3b74eebddb0b4a4c1874936 Mon Sep 17 00:00:00 2001 From: rootdarkarchon Date: Sun, 8 Oct 2023 12:25:03 +0200 Subject: [PATCH] fix toggle ui --- MareSynchronos/Services/CommandManagerService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MareSynchronos/Services/CommandManagerService.cs b/MareSynchronos/Services/CommandManagerService.cs index 6252908..cb10b60 100644 --- a/MareSynchronos/Services/CommandManagerService.cs +++ b/MareSynchronos/Services/CommandManagerService.cs @@ -49,7 +49,7 @@ public sealed class CommandManagerService : IDisposable if (splitArgs == null || splitArgs.Length == 0) { // Interpret this as toggling the UI - _uiService.ToggleUi(); + _uiService.ToggleMainUi(); return; }