Set "New episodes available" tooltip for episodes with html descriptions.

Episodes with an html description did not have a tooltip because the
description field is always empty for them. The new _text_description
field is computed at runtime and should be used for any code wanting a
text description.

Fixes #1350.
This commit is contained in:
auouymous 2022-08-30 21:04:56 -06:00
parent f5a8e54660
commit b9c356f44b
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ class gPodderEpisodeSelector(BuilderWidget):
self.size_attribute = 'file_size'
if not hasattr(self, 'tooltip_attribute'):
self.tooltip_attribute = 'description'
self.tooltip_attribute = '_text_description'
if not hasattr(self, 'selection_buttons'):
self.selection_buttons = {}