Skip to content
Snippets Groups Projects
Commit adb2d051 authored by Marcel Kehrberg's avatar Marcel Kehrberg
Browse files

Tray Icon position Fix

parent df56a359
No related branches found
No related tags found
1 merge request!69Tray Icon position Fix
...@@ -131,7 +131,8 @@ namespace InnoLabProjektDektopApp.Utils ...@@ -131,7 +131,8 @@ namespace InnoLabProjektDektopApp.Utils
// Reopen the context menu if requested // Reopen the context menu if requested
if (showContextMenu) if (showContextMenu)
{ {
_notifyIcon.ContextMenuStrip.Show(); var mousePosition = System.Windows.Forms.Control.MousePosition;
_notifyIcon.ContextMenuStrip.Show(mousePosition);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment