there isn't a solution from within HungryFEED at the moment, I had not see that request before.
one thing you can do is use CSS to truncate the text. on the HTML element that holds the title field, give it the class delcaration "truncate" then add the following CSS class definition:
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}