https://bugs.gpodder.org/show_bug.cgi?id=1573

--- Comment #3 from Thomas Perl <[email protected]> 2012-03-05 18:00:02 GMT ---
(In reply to comment #2)
> Created attachment 702 [details]
> Episode Descriptions have too small font size
> 
> Hi, Thomas :)
> 
> Yes, this happens on all podcasts. The "episode descriptions" look exactly the
> same (i.e., small font size that is hard to read) for every single podcast.

I see. This was done on purpose to see more episodes in one screen. However,
given that descriptions can be disabled, I might have a look at making the
descriptions the same size as the title by default - have to think about it a
bit.

Here's a patch for you in the meantime:

diff --git a/src/gpodder/gtkui/model.py b/src/gpodder/gtkui/model.py
index 7a5e946..7d40362 100644
--- a/src/gpodder/gtkui/model.py
+++ b/src/gpodder/gtkui/model.py
@@ -231,10 +231,10 @@ class EpisodeListModel(gtk.ListStore):
         if episode.state != gpodder.STATE_DELETED and episode.is_new:
             a, b = '<b>', '</b>'
         if include_description and self._all_episodes_view:
-            return '%s%s%s\n<small>%s</small>' % (a, cgi.escape(title), b,
+            return '%s%s%s\n%s' % (a, cgi.escape(title), b,
                     _('from %s') % cgi.escape(episode.channel.title))
         elif include_description:
-            return '%s%s%s\n<small>%s</small>' % (a, cgi.escape(title), b,
+            return '%s%s%s\n%s' % (a, cgi.escape(title), b,
                     cgi.escape(episode.one_line_description()))
         else:
             return ''.join((a, cgi.escape(title), b))

-- 
Configure bugmail: https://bugs.gpodder.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
_______________________________________________
gPodder-Bugs mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/gpodder-bugs

Reply via email to