Commit 195cff16 authored by SergeyLuzyanin's avatar SergeyLuzyanin

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

parent 37d5d6f2
......@@ -911,6 +911,16 @@ CChartSpace.prototype.applyLabelsFunction = function(fCallback, value)
CChartSpace.prototype.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);
};
......
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