Commit e8f5d71ca3d3f6809d9b70bfb6188a58d517b97b
1 parent
9af4d111
Issue fixed:
In mirror images, multi highlight was not un highlighting if left CTRL. Fixed
Showing
1 changed file
with
6 additions
and
0 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -856,6 +856,12 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
856 | 856 | |
857 | 857 | FlipedImgCanvas.addEventListener('click', function (evt) { |
858 | 858 | |
859 | + if (evt.ctrlKey) { | |
860 | + $scope.multiAnnotationIsON = true; | |
861 | + } | |
862 | + else { | |
863 | + $scope.multiAnnotationIsON = false; | |
864 | + } | |
859 | 865 | |
860 | 866 | //get mouse coordinate of mirror image click |
861 | 867 | var mousePos = $scope.getMousePos(evt); | ... | ... |