From c4d717e46fe191fbb1fffcb0905dde25457ddada Mon Sep 17 00:00:00 2001
From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>
Date: Thu, 11 Jan 2018 10:46:36 +0100
Subject: [PATCH] Add note about left mouse button click handling.

Refers to #2
---
 ATXTray/AutoTxTray.cs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ATXTray/AutoTxTray.cs b/ATXTray/AutoTxTray.cs
index 783f538..e8cab0b 100644
--- a/ATXTray/AutoTxTray.cs
+++ b/ATXTray/AutoTxTray.cs
@@ -35,6 +35,8 @@ namespace ATXTray
         public AutoTxTray() {
             _notifyIcon.Visible = true;
             _notifyIcon.Icon = new Icon("AutoTx.ico");
+            // this doesn't work properly, the menu will not close etc. so we disable it for now:
+            // _notifyIcon.Click += ShowContextMenu;
 
             try {
                 _config = ServiceConfig.Deserialize(ConfigFile);
-- 
GitLab