Is this what you're looking for?
In /ow_plugins/blogs/controllers/blog.php look for this code, line 135 in my file.
$text = explode("<!--more-->", $dto->getPost());
Change it to:
$text = explode("<!--more-->", UTIL_String::truncate( strip_tags($dto->getpost()), 200, "<!--more-->" ) );
Change the 200 to however long or short you want the description.
No idea if this is right or wrong way to do it but it works.
Havent tried this on 1.7.2 though