[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/05: corrected wx fft vertical label from
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/05: corrected wx fft vertical label from amplitude to power |
Date: |
Wed, 15 Oct 2014 14:06:02 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch master
in repository gnuradio.
commit 4ba84a41da4db0ee0e68336449a6195bd15d571d
Author: Michael Ossmann <address@hidden>
Date: Fri Sep 19 12:17:37 2014 -0600
corrected wx fft vertical label from amplitude to power
---
gr-wxgui/python/wxgui/fft_window.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gr-wxgui/python/wxgui/fft_window.py
b/gr-wxgui/python/wxgui/fft_window.py
index 86023e3..83375e5 100644
--- a/gr-wxgui/python/wxgui/fft_window.py
+++ b/gr-wxgui/python/wxgui/fft_window.py
@@ -407,6 +407,6 @@ class fft_window(wx.Panel, pubsub.pubsub):
#update y grid
self.plotter.set_y_grid(ref_level-y_per_div*y_divs, ref_level,
y_per_div)
#update y units
- self.plotter.set_y_label('Amplitude', 'dB')
+ self.plotter.set_y_label('Power', 'dB')
#update plotter
self.plotter.update()