Hi Surya! It was a while ago that i fiddled with this, and google have changed the forms layout a tad - but the height of the iframe (because the question is a clipped iframe) is found in:
$:/_TWaddle/plugins/GComment
...you can find the size of the iframe specified close to bottom in that tiddler. Change it into e.g 600px - but note that you'll then also have to style the popup size to accomodate it, i.e the tiddler
$:/_TWaddle/GComments/Stylesheet
perhaps like so
.gcom_form {position: absolute; left: -30px; top: -350px; clip:rect(370px 400px 550px 40px); overflow:hidden; display:inline-block;border:0px solid yellow;}
The proper way to do this would probably be to remake it so that the iframe and the clip:rect (and probably also the gcom_heightfiller style) all fetch the same value from a macro. And of course I should just overall package this into a plugin.. and perhaps remake the config tiddler to accommodate for a user defined comment height. But note that iframes can unfortunately not automatically expand as their content expands, like the text field therein does! So a long enough comment will always push the submit button out of boundry! Making the clipped area be a long strip to begin with will also expose the form content below the button.
If I were to remake this I'd probably experiment with making the popup invisible (i.e its border and background) and instead try to style the iframe itself. This might allow for better control so that it is only the iframe size that sets the outer limits rather than the iframe+popup.
Hope this helps.
<:-)