Disable "grippie" (resizable) on text area

Via form_alter, find the textarea you want to change.
Set #resizable attribute to FALSE;

<?php
$form
['comment_filter']['comment']['#resizable'] = FALSE;
?>