From 5505df47aac1afaf6390faa93357c9917edcd676 Mon Sep 17 00:00:00 2001 From: Moritz Venn Date: Wed, 24 Oct 2007 10:08:55 +0000 Subject: [PATCH] - Fix clipping issues with RSSEntryList --- simplerss/src/RSSList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simplerss/src/RSSList.py b/simplerss/src/RSSList.py index fe5fca87..e68d650e 100644 --- a/simplerss/src/RSSList.py +++ b/simplerss/src/RSSList.py @@ -104,5 +104,5 @@ class RSSEntryList(RSSBaseList): def buildListboxEntry(self, title, link, summary, enclosures): res = [ None ] width = self.l.getItemSize().width() - res.append(MultiContentEntryText(pos=(0, 0), size=(width, 50), font=0, flags = RT_HALIGN_LEFT|RT_WRAP, text = title)) + res.append(MultiContentEntryText(pos=(0, 3), size=(width, 50), font=0, flags = RT_HALIGN_LEFT|RT_WRAP, text = title)) return res \ No newline at end of file -- 2.20.1