Commit 5f5a28be authored by SergeyLuzyanin's avatar SergeyLuzyanin Committed by Alexander.Trofimov

Неправильная работало увеличение размера шрифта в заголовке диаграммы

parent e7e7de87
...@@ -827,6 +827,16 @@ CChartSpace.prototype.paragraphAdd = function(paraItem, bRecalculate) ...@@ -827,6 +827,16 @@ CChartSpace.prototype.paragraphAdd = function(paraItem, bRecalculate)
paragraphIncDecFontSize: function(bIncrease) paragraphIncDecFontSize: function(bIncrease)
{ {
if(this.selection.textSelection)
{
this.selection.textSelection.checkDocContent();
var content = this.selection.textSelection.getDocContent();
if(content)
{
content.Paragraph_IncDecFontSize(bIncrease);
}
return;
}
this.applyLabelsFunction(CheckIncDecFontSize, bIncrease); this.applyLabelsFunction(CheckIncDecFontSize, bIncrease);
}, },
......
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