Skip to content

Commit b198b41

Browse files
authored
Merge pull request #8977 from anntzer/figureoptions-labels
Change labels in Qt figure options.
2 parents 170726d + 6412460 commit b198b41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/backends/qt_editor/figureoptions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ def figure_edit(axes, parent=None):
5252
general = [('Title', axes.get_title()),
5353
sep,
5454
(None, "<b>X-Axis</b>"),
55-
('Min', xmin), ('Max', xmax),
55+
('Left', xmin), ('Right', xmax),
5656
('Label', axes.get_xlabel()),
5757
('Scale', [axes.get_xscale(), 'linear', 'log', 'logit']),
5858
sep,
5959
(None, "<b>Y-Axis</b>"),
60-
('Min', ymin), ('Max', ymax),
60+
('Bottom', ymin), ('Top', ymax),
6161
('Label', axes.get_ylabel()),
6262
('Scale', [axes.get_yscale(), 'linear', 'log', 'logit']),
6363
sep,

0 commit comments

Comments
 (0)