Index: t3lib/js/extjs/ux/ext.resizable.js =================================================================== --- t3lib/js/extjs/ux/ext.resizable.js (revision 7796) +++ t3lib/js/extjs/ux/ext.resizable.js (working copy) @@ -1003,11 +1003,13 @@ .replace(/\n/g, '
 ') ); - var growBy = parseInt(el.getStyle('line-height')) + 1; + var growBy = parseInt(el.getStyle('line-height')); + growBy = growBy ? growBy+1 : 1; if (growBy === 1) { growBy = options.growBy; } - var textHeight = this.div.getHeight() + growBy; + var textHeight = this.div.getHeight(); + textHeight = textHeight ? textHeight+growBy : growBy; if ( (textHeight > options.maxHeight ) && (options.maxHeight > 0) ){ textHeight = options.maxHeight ;