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.
2 parents b498783 + f53ee4d commit 6245d4eCopy full SHA for 6245d4e
1 file changed
lib/matplotlib/backends/qt_editor/figureoptions.py
@@ -46,8 +46,8 @@ def figure_edit(axes, parent=None):
46
has_curve = len(axes.get_lines()) > 0
47
48
# Get / General
49
- xmin, xmax = axes.get_xlim()
50
- ymin, ymax = axes.get_ylim()
+ xmin, xmax = map(float, axes.get_xlim())
+ ymin, ymax = map(float, axes.get_ylim())
51
general = [('Title', axes.get_title()),
52
sep,
53
(None, "<b>X-Axis</b>"),
0 commit comments