Index: t3lib/tceforms/class.t3lib_tceforms_tree.php =================================================================== --- t3lib/tceforms/class.t3lib_tceforms_tree.php (revision 9259) +++ t3lib/tceforms/class.t3lib_tceforms_tree.php (revision ) @@ -134,12 +135,12 @@ ? $PA['fieldConf']['config']['exclusiveKeys'] : '') . '", ucId: "' . md5($table . '|' . $field ) . '", selModel: TYPO3.Components.Tree.EmptySelectionModel - }); - tree' . $id . '.' . ($autoSizeMax - ? 'bodyStyle = "max-height: ' . $autoSizeMax . 'px;"' - : 'height = ' . $height - ) . '; - tree' . $id . '.render("tree_' . $id . '");' . + });' . LF . + ($autoSizeMax + ? 'tree' . $id . '.bodyStyle = "max-height: ' . $autoSizeMax . 'px;min-height: ' . $height . 'px;";' + : 'tree' . $id . '.height = ' . $height . ';' + ) . LF . + 'tree' . $id . '.render("tree_' . $id . '");' . ($expanded ? 'tree' . $id . '.expandAll();' : '') . ' ');