ShowWidget: Increase the description char limit

This commit is contained in:
Jordan Petridis 2018-08-09 10:16:55 +03:00
parent 28f08ed196
commit e068cff37b
No known key found for this signature in database
GPG Key ID: CEABAD9F5683B9A6

View File

@ -97,7 +97,7 @@ impl ShowWidget {
/// Set the description text.
fn set_description(&self, text: &str) {
self.description
.set_markup(html2text::from_read(text.as_bytes(), 70).trim());
.set_markup(html2text::from_read(text.as_bytes(), 90).trim());
}
pub(crate) fn show_id(&self) -> Option<i32> {