summaryrefslogtreecommitdiff
path: root/gr-radio-astronomy/src/python/ra_fftsink.py
diff options
context:
space:
mode:
authorJosh Blum2010-01-10 01:03:11 -0800
committerJosh Blum2010-01-10 01:03:11 -0800
commita549bd11646f60d425a74d530b8f3ddfc4774202 (patch)
treeee6ff51e023ce83c226de84c15af4255dbd60888 /gr-radio-astronomy/src/python/ra_fftsink.py
parent5928825be7a4f887b27877418ad8c017863c21fc (diff)
downloadgnuradio-a549bd11646f60d425a74d530b8f3ddfc4774202.tar.gz
gnuradio-a549bd11646f60d425a74d530b8f3ddfc4774202.tar.bz2
gnuradio-a549bd11646f60d425a74d530b8f3ddfc4774202.zip
fixed issue 387: removed uses of win.set for wx sinks
Diffstat (limited to 'gr-radio-astronomy/src/python/ra_fftsink.py')
-rwxr-xr-xgr-radio-astronomy/src/python/ra_fftsink.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-radio-astronomy/src/python/ra_fftsink.py b/gr-radio-astronomy/src/python/ra_fftsink.py
index 4733027c1..8718a8f67 100755
--- a/gr-radio-astronomy/src/python/ra_fftsink.py
+++ b/gr-radio-astronomy/src/python/ra_fftsink.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright 2003,2004,2005,2007 Free Software Foundation, Inc.
+# Copyright 2003,2004,2005,2007,2010 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
@@ -82,7 +82,7 @@ class ra_fft_sink_base(object):
self.peak_hold = enable
if enable:
self.set_average(False)
- self.win.set_peak_hold(enable)
+ self.set_peak_hold(enable)
def set_autoscale(self, auto):
self.autoscale = auto