81a32b0d1e
Moved GraphicsScene to its own directory, added exportDialog Removed old export options from PlotItem / ViewBox (will re-enable once they are working again)
8 lines
142 B
Python
8 lines
142 B
Python
from SVGExporter import *
|
|
from ImageExporter import *
|
|
Exporters = [SVGExporter, ImageExporter]
|
|
|
|
def listExporters():
|
|
return Exporters[:]
|
|
|