From e068cff37b5a4f1de308a96a339abafe0aa2f93f Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Thu, 9 Aug 2018 10:16:55 +0300 Subject: [PATCH] ShowWidget: Increase the description char limit --- podcasts-gtk/src/widgets/show.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podcasts-gtk/src/widgets/show.rs b/podcasts-gtk/src/widgets/show.rs index 173bb6e..f4c985c 100644 --- a/podcasts-gtk/src/widgets/show.rs +++ b/podcasts-gtk/src/widgets/show.rs @@ -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 {