diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs index 5e2585d295847c8eb2e8975e51956169c11e8ac1..cce6aeb7e816456939a41e22a89ba1fe3a3eb19e 100644 --- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs +++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs @@ -131,7 +131,8 @@ namespace InnoLabProjektDektopApp.Utils // Reopen the context menu if requested if (showContextMenu) { - _notifyIcon.ContextMenuStrip.Show(); + var mousePosition = System.Windows.Forms.Control.MousePosition; + _notifyIcon.ContextMenuStrip.Show(mousePosition); } }