summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnathan Corgan2010-07-21 18:29:48 -0700
committerJohnathan Corgan2010-07-21 18:29:48 -0700
commit9df7bb4aafc6196f15d2d2b4f4458368c6a685e8 (patch)
treee9623a3af4bcc24e1a34c4fe6f6977921f0ecab1
parentf7a2b8b09bf8d30534dd2d7546a7300e2f358595 (diff)
parent1620ab8499a7854ff1248a94782a800fb016d1f2 (diff)
downloadgnuradio-9df7bb4aafc6196f15d2d2b4f4458368c6a685e8.tar.gz
gnuradio-9df7bb4aafc6196f15d2d2b4f4458368c6a685e8.tar.bz2
gnuradio-9df7bb4aafc6196f15d2d2b4f4458368c6a685e8.zip
Merge branch 'maint'
* maint: wxgui: fix to use wx.Colour which is the actual name of the class (wx python wrapper may be missing wx.Color wrapper)
-rw-r--r--gr-wxgui/src/python/plotter/gltext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-wxgui/src/python/plotter/gltext.py b/gr-wxgui/src/python/plotter/gltext.py
index 67f62ca56..1b3c047dc 100644
--- a/gr-wxgui/src/python/plotter/gltext.py
+++ b/gr-wxgui/src/python/plotter/gltext.py
@@ -193,7 +193,7 @@ class TextElement(object):
img = wx.ImageFromBitmap(bmp)
alpha = img.GetData()
- if isinstance(self._foreground, wx.Color):
+ if isinstance(self._foreground, wx.Colour):
"""
If we have a static color...
"""