Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad02561 commit 5705bd8Copy full SHA for 5705bd8
2 files changed
CHANGELOG
@@ -1,3 +1,6 @@
1
+2008-12-06 Fixed a bug in svg backend that new_figure_manager()
2
+ ignores keywords arguments such as figsize, etc. -JJL
3
+
4
2008-12-05 Fixed a bug that the handlelength of the new legend class
5
set too short when numpoints=1 -JJL
6
lib/matplotlib/backends/backend_svg.py
@@ -27,7 +27,7 @@
27
28
def new_figure_manager(num, *args, **kwargs):
29
FigureClass = kwargs.pop('FigureClass', Figure)
30
- thisFig = FigureClass(*args)
+ thisFig = FigureClass(*args, **kwargs)
31
canvas = FigureCanvasSVG(thisFig)
32
manager = FigureManagerSVG(canvas, num)
33
return manager
0 commit comments