Skip to content
Snippets Groups Projects
Commit e97aebb3 authored by Luke Campagnola's avatar Luke Campagnola
Browse files

Merge branch 'develop' of https://github.com/johnelund/pyqtgraph into johnelund-develop

parents b3e07a0e a381c61c
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ from .LabelItem import LabelItem ...@@ -3,7 +3,7 @@ from .LabelItem import LabelItem
from ..Qt import QtGui, QtCore from ..Qt import QtGui, QtCore
from .. import functions as fn from .. import functions as fn
from ..Point import Point from ..Point import Point
from .ScatterPlotItem import ScatterPlotItem from .ScatterPlotItem import ScatterPlotItem, drawSymbol
from .PlotDataItem import PlotDataItem from .PlotDataItem import PlotDataItem
from .GraphicsWidgetAnchor import GraphicsWidgetAnchor from .GraphicsWidgetAnchor import GraphicsWidgetAnchor
__all__ = ['LegendItem'] __all__ = ['LegendItem']
...@@ -167,7 +167,7 @@ class ItemSample(GraphicsWidget): ...@@ -167,7 +167,7 @@ class ItemSample(GraphicsWidget):
size = opts['size'] size = opts['size']
p.translate(10,10) p.translate(10,10)
path = ScatterPlotItem.drawSymbol(p, symbol, size, pen, brush) path = drawSymbol(p, symbol, size, pen, brush)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment