*** /home/callum/tmp/lib/TWiki/Plugins/EditTablerowPlugin.pm Wed Dec 6 12:23:00 2006 --- lib/TWiki/Plugins/EditTablerowPlugin.pm Fri Feb 23 15:58:53 2007 *************** *** 840,845 **** --- 857,868 ---- $size = '40x5'; } else { $size = 1; + } + } else { + # switch around textarea size for form definition + if ($type eq 'textarea') { + my ($rows, $cols) = ($size =~ /([0-9]*)x([0-9]*)/); + $size = $cols . 'x' . $rows; } }