From ae5a61edebcbc8e2eef2bd2606388be2c6c4caed Mon Sep 17 00:00:00 2001 From: Laszlo Nemeth <57342539+donlaci@users.noreply.github.com> Date: Mon, 2 Sep 2024 15:01:51 +0200 Subject: [PATCH] [Workspaces] add closing of the module after the Editor is closed. (#34533) --- src/modules/Workspaces/WorkspacesEditor/App.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/Workspaces/WorkspacesEditor/App.xaml.cs b/src/modules/Workspaces/WorkspacesEditor/App.xaml.cs index 073ecfc802f..b8b1793ad1e 100644 --- a/src/modules/Workspaces/WorkspacesEditor/App.xaml.cs +++ b/src/modules/Workspaces/WorkspacesEditor/App.xaml.cs @@ -103,6 +103,7 @@ private void OnExit(object sender, ExitEventArgs e) } Dispose(); + Environment.Exit(0); } private void OnUnhandledException(object sender, UnhandledExceptionEventArgs args)