Commit 853f3d64 authored by Dmitry.Vikulov's avatar Dmitry.Vikulov Committed by Alexander.Trofimov

Fix Bug 20307 - Диапазон данных для диаграммы просвечивает через другую диаграмму

Fix Bug 21651 - [Charts] Не перерисовывается диаграмма при удалении листа, на который ссылаются данные диаграммы
Fix Bug 22529 - Заблокировать открытие фрейма диаграммы при двойном клике ПКМ

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53045 954022d7-b5bf-4e40-9824-e11837661b57
parent a63435c1
...@@ -5294,14 +5294,15 @@ function ClickCounter() { ...@@ -5294,14 +5294,15 @@ function ClickCounter() {
var _this = this; var _this = this;
_this.x = 0; _this.x = 0;
_this.y = 0; _this.y = 0;
_this.button = 0;
_this.time = 0; _this.time = 0;
_this.clickCount = 0; _this.clickCount = 0;
_this.log = false; _this.log = false;
_this.mouseDownEvent = function(x, y) { _this.mouseDownEvent = function(x, y, button) {
var currTime = getCurrentTime(); var currTime = getCurrentTime();
if ( (_this.x === x) && (_this.y === y) && (currTime - _this.time < 500) ) if ( (_this.button === button) && (_this.x === x) && (_this.y === y) && (currTime - _this.time < 500) )
_this.clickCount++; _this.clickCount++;
else else
_this.clickCount = 1; _this.clickCount = 1;
......
...@@ -1119,7 +1119,7 @@ ...@@ -1119,7 +1119,7 @@
if ( event.metaKey ) if ( event.metaKey )
event.ctrlKey = true; event.ctrlKey = true;
this.clickCounter.mouseDownEvent(coord.x, coord.y); this.clickCounter.mouseDownEvent(coord.x, coord.y, event.button);
event.ClickCount = this.clickCounter.clickCount; event.ClickCount = this.clickCounter.clickCount;
if ( (event.ClickCount == 2) && asc["editor"].isStartAddShape ) if ( (event.ClickCount == 2) && asc["editor"].isStartAddShape )
......
...@@ -2674,6 +2674,8 @@ ...@@ -2674,6 +2674,8 @@
if (!this.isSelectionDialogMode) { if (!this.isSelectionDialogMode) {
this._drawCollaborativeElements(/*bIsDrawObjects*/true); this._drawCollaborativeElements(/*bIsDrawObjects*/true);
this._drawSelectionRange(range); this._drawSelectionRange(range);
if ( this.objectRender.selectedGraphicObjectsExists() )
this.objectRender.OnUpdateOverlay();
} }
else { else {
this._drawSelectionRange(range); this._drawSelectionRange(range);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment