diff --git a/editor/js/ui/common/typedInput.js b/editor/js/ui/common/typedInput.js index ed13dc501..a455efc66 100644 --- a/editor/js/ui/common/typedInput.js +++ b/editor/js/ui/common/typedInput.js @@ -117,7 +117,7 @@ this.uiSelect = this.elementDiv.wrap( "
" ).parent(); var attrStyle = this.element.attr('style'); var m; - if ((m = /width\s*:\s*(\d+%)/i.exec(attrStyle)) !== null) { + if ((m = /width\s*:\s*(\d+(%|px))/i.exec(attrStyle)) !== null) { this.element.css('width','100%'); this.uiSelect.width(m[1]); this.uiWidth = null;