diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-02-29 20:18:41 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-02-29 20:18:41 +0100 |
commit | 52f1685f3f43b07195dc89da548aed2fe1d639c0 (patch) | |
tree | 5b489367a894a94bd82eecb540d8a8e593092906 /media-gfx/fr0st/files | |
parent | www-apache/passenger: add 5.0.25 (diff) | |
download | gentoo-52f1685f3f43b07195dc89da548aed2fe1d639c0.tar.gz gentoo-52f1685f3f43b07195dc89da548aed2fe1d639c0.tar.bz2 gentoo-52f1685f3f43b07195dc89da548aed2fe1d639c0.zip |
media-gfx/fr0st: Fix problems at runtime (#564106, thanks a lot to Malcolm Lashley for finding the fix), port to new python eclasses, use wxGTK3.
Package-Manager: portage-2.2.27
Diffstat (limited to 'media-gfx/fr0st/files')
-rw-r--r-- | media-gfx/fr0st/files/fr0st-1.4-colour.patch | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/media-gfx/fr0st/files/fr0st-1.4-colour.patch b/media-gfx/fr0st/files/fr0st-1.4-colour.patch new file mode 100644 index 000000000000..9fb17aadaab7 --- /dev/null +++ b/media-gfx/fr0st/files/fr0st-1.4-colour.patch @@ -0,0 +1,9 @@ +--- fr0stlib/gui/canvas.py~ 2011-05-14 19:58:25.000000000 +0200 ++++ fr0stlib/gui/canvas.py 2016-02-20 17:47:25.853322560 +0100 +@@ -79,7 +79,7 @@ + + def SetBrush(self, FillColor, FillStyle): + r,g,b = FillColor +- c = wx.Color(r,g,b, self.Opacity) ++ c = wx.Colour(r,g,b, self.Opacity) + self.Brush = wx.Brush(c) |