From 1ab52ca4982e638fdb3127de8ce032f22f047c22 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 7351d92..9f2d59a 100644 --- a/podcasts-gtk/src/widgets/show.rs +++ b/podcasts-gtk/src/widgets/show.rs @@ -97,7 +97,7 @@ impl ShowWidget { /// Set the descripton 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 {