diff options
Diffstat (limited to 'gr-wxgui/src/python/plotter/waterfall_plotter.py')
-rw-r--r-- | gr-wxgui/src/python/plotter/waterfall_plotter.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-wxgui/src/python/plotter/waterfall_plotter.py b/gr-wxgui/src/python/plotter/waterfall_plotter.py index 88e2b4dc1e..42c17da869 100644 --- a/gr-wxgui/src/python/plotter/waterfall_plotter.py +++ b/gr-wxgui/src/python/plotter/waterfall_plotter.py @@ -152,10 +152,10 @@ class waterfall_plotter(grid_plotter_base): glEnable(GL_TEXTURE_2D) glPushMatrix() #matrix scaling - glTranslatef(self.padding_left+1, self.padding_top, 0) + glTranslatef(self.padding_left, self.padding_top, 0) glScalef( - float(self.width-self.padding_left-self.padding_right-1), - float(self.height-self.padding_top-self.padding_bottom-1), + float(self.width-self.padding_left-self.padding_right), + float(self.height-self.padding_top-self.padding_bottom), 1.0, ) #draw texture with wrapping |