diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-07-07 12:20:09 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-07-07 12:20:09 -0400 |
commit | bbfc759914da80214fabc70fbbed1edaf39f9e4b (patch) | |
tree | 712eb6d1d95445bb6535534ce86d7faf1bfe6f90 /gr-wxgui/python/wxgui/plotter/grid_plotter_base.py | |
parent | 3f469513b94ac992138360caca7e1b53f82214ae (diff) | |
parent | 597b93798a804cde1783d6d2ab53b348d57c44cd (diff) |
Merge branch 'maint'
Diffstat (limited to 'gr-wxgui/python/wxgui/plotter/grid_plotter_base.py')
-rw-r--r-- | gr-wxgui/python/wxgui/plotter/grid_plotter_base.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-wxgui/python/wxgui/plotter/grid_plotter_base.py b/gr-wxgui/python/wxgui/plotter/grid_plotter_base.py index e1ac311deb..bc48ad72f5 100644 --- a/gr-wxgui/python/wxgui/plotter/grid_plotter_base.py +++ b/gr-wxgui/python/wxgui/plotter/grid_plotter_base.py @@ -78,7 +78,7 @@ class grid_plotter_base(plotter_base): def set_point_label_coordinate(self, coor): """ Set the point label coordinate. - + Args: coor: the coordinate x, y tuple or None """ @@ -87,7 +87,7 @@ class grid_plotter_base(plotter_base): self._point_label_cache.changed(True) self.update() self.unlock() - + def call_freq_callback(self, coor): try: x, y = self._point_label_coordinate @@ -102,7 +102,7 @@ class grid_plotter_base(plotter_base): x_val = x_win_scalar*(self.x_max-self.x_min) + self.x_min y_val = y_win_scalar*(self.y_max-self.y_min) + self.y_min self._call_callback(x_val, y_val) - + def enable_grid_aspect_ratio(self, enable=None): """ Enable/disable the grid aspect ratio. @@ -371,7 +371,7 @@ class grid_plotter_base(plotter_base): def enable_grid_lines(self, enable=None): """ Enable/disable the grid lines. - + Args: enable: true to enable |