diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2014-01-23 08:08:39 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2014-01-23 08:08:39 +0000 |
commit | be99c1cffd731331df2912bb1e036b55578a81a5 (patch) | |
tree | bbd94a8fe19a14a0f8d51b88c9d8125f6516b58c /x11-apps/ccsm/files | |
parent | Version bump. (diff) | |
download | gentoo-2-be99c1cffd731331df2912bb1e036b55578a81a5.tar.gz gentoo-2-be99c1cffd731331df2912bb1e036b55578a81a5.tar.bz2 gentoo-2-be99c1cffd731331df2912bb1e036b55578a81a5.zip |
Revision bump: add workaround for bug #487106, patch by Small_Penguin <dark.shadow AT gmx.at>
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'x11-apps/ccsm/files')
-rw-r--r-- | x11-apps/ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/x11-apps/ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch b/x11-apps/ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch new file mode 100644 index 000000000000..9b325af7f341 --- /dev/null +++ b/x11-apps/ccsm/files/ccsm-0.8.4-pygobject-glib-fix.patch @@ -0,0 +1,16 @@ +Fix missing icon and text with new PyGObject +Gentoo bugreport - https://bugs.gentoo.org/show_bug.cgi?id=487106 +Patch by Small_Penguin <dark.shadow AT gmx.at> + +diff -Naur ccsm-0.8.4~/ccm/Utils.py ccsm-0.8.4/ccm/Utils.py +--- ccsm-0.8.4~/ccm/Utils.py 2009-10-14 03:05:30.000000000 +0200 ++++ ccsm-0.8.4/ccm/Utils.py 2013-10-05 10:16:10.050030522 +0200 +@@ -184,7 +184,7 @@ + if has_focus: + self.unset_flags (gtk.HAS_FOCUS) + +- ret = super (PrettyButton, self).do_expose_event (self, event) ++ ret = gtk.Button.do_expose_event (self, event) + + if has_focus: + self.set_flags (gtk.HAS_FOCUS) |