UNPKG

phaser4-rex-plugins

Version:
22 lines (19 loc) 616 B
var SetInputRowTitleWidth = function (width) { if (!this.isWrapMode) { width -= this.getInnerPadding('left'); } var children = this.sizerChildren; for (var i = 0, cnt = children.length; i < cnt; i++) { var child = children[i]; if (child.rexSizer.hidden) { continue; } if (child.setMinTitleWidth) { // InputRow child.setMinTitleWidth(width); } else if (child.setInputRowTitleWidth) { child.setInputRowTitleWidth(width); } } return this; } export default SetInputRowTitleWidth;