From 9ffa9f057189d23afef0fd8460207fad26788cc7 Mon Sep 17 00:00:00 2001 From: Unick Soft Date: Sun, 21 Oct 2018 20:36:49 +0200 Subject: [PATCH] Added statistic messages. --- script/EventHandlers.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/EventHandlers.js b/script/EventHandlers.js index 122e544..d495901 100644 --- a/script/EventHandlers.js +++ b/script/EventHandlers.js @@ -474,6 +474,7 @@ ConnectionGraphHandler.prototype.MouseDown = function(pos) var selectedObject = this.GetSelectedGraph(pos); if (selectedObject && (selectedObject instanceof BaseVertex)) { + userAction("ConnectionHandler.Mouse"); this.SelectVertex(selectedObject); } else @@ -502,6 +503,7 @@ ConnectionGraphHandler.prototype.SelectSecond = function(selectedObject) ConnectionGraphHandler.prototype.SelectFirstVertexMenu = function(vertex1Text, vertex) { + userAction("ConnectionHandler.Menu"); this.firstObject = null; this.SelectVertex(vertex); } @@ -516,6 +518,7 @@ ConnectionGraphHandler.prototype.UpdateFirstVertexMenu = function(vertex1Text) ConnectionGraphHandler.prototype.SelectSecondVertexMenu = function(vertex2Text, vertex) { + userAction("ConnectionHandler.Menu"); this.SelectVertex(vertex); }