Skip to content

Commit

Permalink
Merge pull request #296 from ONLYOFFICE/bug/tabToLableContentControl
Browse files Browse the repository at this point in the history
Change label of the content control
  • Loading branch information
agolybev authored Apr 9, 2018
2 parents dc862fe + c4522bf commit 92d9599
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion word/Editor/StructuredDocumentTags/BlockLevel.js
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ CBlockLevelSdt.prototype.DrawContentControlsTrack = function(isHover)
arrRects.push({X : oBounds.Left, Y : oBounds.Top, R : oBounds.Right, B : oBounds.Bottom, Page : nPageAbs});
}

var sName = this.GetTag();
var sName = this.GetLabel();
var isBuiltIn = false;
var arrButtons = [];

Expand Down
2 changes: 1 addition & 1 deletion word/Editor/StructuredDocumentTags/InlineLevel.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ CInlineLevelSdt.prototype.DrawContentControlsTrack = function(isHover)

var oDrawingDocument = this.Paragraph.LogicDocument.Get_DrawingDocument();

var sName = this.GetTag();
var sName = this.GetLabel();
var isBuiltIn = false;
var arrButtons = [];

Expand Down

0 comments on commit 92d9599

Please sign in to comment.