Commit 5f94b945 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 31031 - Содержимое в поле имени и строке ввода формул пропадает после...

Bug 31031 - Содержимое в поле имени и строке ввода формул пропадает после перехода в окно выбора данных именованного диапазона 

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66989 954022d7-b5bf-4e40-9824-e11837661b57
parent 663c9111
......@@ -385,6 +385,10 @@ DrawingObjectsController.prototype =
{
if(bStart)
{
if(this.selectedObjects.length === 0){
this.chartForProps = null;
return;
}
this.chartForProps = this.getSelectionState();
this.resetSelection();
this.drawingObjects.getWorksheet().arrActiveChartsRanges = [];
......@@ -395,6 +399,9 @@ DrawingObjectsController.prototype =
}
else
{
if(this.chartForProps === null){
return;
}
this.setSelectionState(this.chartForProps, this.chartForProps.length - 1);
this.updateOverlay();
this.drawingObjects.getWorksheet().setSelectionShape(true);
......
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