X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=multiplotwidget.py;h=603b2f7b2c409a8253e95b42998052d9ef586383;hb=0b63748bf0df16561324cd77938425d2f9b7b040;hp=1d257bd450f3cfa63877a7195c454b44d84c928c;hpb=d0aa45b43873337a187f274d5c2919e994941f7f;p=sigrok-meter.git diff --git a/multiplotwidget.py b/multiplotwidget.py index 1d257bd..603b2f7 100755 --- a/multiplotwidget.py +++ b/multiplotwidget.py @@ -14,8 +14,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## along with this program; if not, see . ## import qtcompat @@ -24,7 +23,7 @@ QtCore = qtcompat.QtCore QtGui = qtcompat.QtGui pyqtgraph = qtcompat.pyqtgraph -# black foreground on white background +# Black foreground on white background. pyqtgraph.setConfigOption('background', 'w') pyqtgraph.setConfigOption('foreground', 'k') @@ -103,7 +102,7 @@ class MultiPlotItem(pyqtgraph.GraphicsWidget): def _rowNumber(self, plot): '''Returns the number of the first row a plot occupies.''' - # Every plot takes up two rows + # Every plot takes up two rows. return 2 * self._plots.index(plot) @QtCore.Slot() @@ -173,6 +172,7 @@ class MultiPlotWidget(pyqtgraph.GraphicsView): for m in [ 'addPlot', + 'hidePlot', 'showPlot' ]: setattr(self, m, getattr(self.multiPlotItem, m))