Commit c5d19424 authored by KirillovIlya's avatar KirillovIlya

Сделана обработка нового параметра NoWrap у ячеек таблиц.

parent b00733f2
...@@ -908,7 +908,12 @@ CTableCell.prototype = ...@@ -908,7 +908,12 @@ CTableCell.prototype =
if (true === this.Is_VerticalText()) if (true === this.Is_VerticalText())
isRotated = true === isRotated ? false : true; isRotated = true === isRotated ? false : true;
return this.Content.Recalculate_MinMaxContentWidth(isRotated); var Result = this.Content.Recalculate_MinMaxContentWidth(isRotated);
if (true !== isRotated && true === this.Get_NoWrap())
Result.Min = Math.max(Result.Min, Result.Max);
return Result;
}, },
private_GetTextDirectionTransform : function() private_GetTextDirectionTransform : function()
......
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