Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 246115 - media-sound/quodlibet-2.0 crash if I right click the header
Summary: media-sound/quodlibet-2.0 crash if I right click the header
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Sound Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-11-09 00:36 UTC by Carles Escrig
Modified: 2009-05-13 07:29 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
quodlibet-2.0-r1.ebuild (quodlibet-2.0.diff,348 bytes, patch)
2008-11-09 00:38 UTC, Carles Escrig
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Carles Escrig 2008-11-09 00:36:50 UTC
In the Album List view, if I right click the header to configure the titles, quodlibet drops drop an error.

Reproducible: Always
Comment 1 Carles Escrig 2008-11-09 00:38:38 UTC
Created attachment 171139 [details, diff]
quodlibet-2.0-r1.ebuild

This solves the problem.
Comment 2 Wormo (RETIRED) gentoo-dev 2008-11-09 08:37:08 UTC
Thanks for submitting your fix.

Can you give a brief explanation of how this fixes your crash?
Comment 3 Carles Escrig 2008-11-09 09:38:29 UTC
A missing variable in songlist.py (line 818) is causing the error:

-            for header in sorted(zip(map(tag, group), group)):
+            for header in sorted(zip(map(util.tag, group), group)):

It's also fixed upstream:
http://code.google.com/p/quodlibet/issues/detail?id=14

Regards :-)
Comment 4 Samuli Suominen (RETIRED) gentoo-dev 2009-05-13 07:29:29 UTC
+*quodlibet-2.0-r3 (13 May 2009)
+
+  13 May 2009; Samuli Suominen <ssuominen@gentoo.org>
+  +quodlibet-2.0-r3.ebuild, +files/quodlibet-2.0-click.patch:
+  Fix crash when headers are click with right mouse button, patch from
+  upstream wrt #246115, thanks to Carles Escrig for reporting.