Skip to content

Commit 705678e

Browse files
authored
Merge pull request #7099 from anntzer/figureoptions-drawstyles
Fix steps-* drawstyles in Qt figureoptions.
2 parents 862e4a4 + ef7b55a commit 705678e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lib/matplotlib/backends/qt_editor/figureoptions.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ def get_icon(name):
3333
'None': 'None',
3434
}
3535

36-
DRAWSTYLES = {'default': 'Default',
37-
'steps': 'Steps',
38-
}
36+
DRAWSTYLES = {
37+
'default': 'Default',
38+
'steps-pre': 'Steps (Pre)', 'steps': 'Steps (Pre)',
39+
'steps-mid': 'Steps (Mid)',
40+
'steps-post': 'Steps (Post)'}
3941

4042
MARKERS = markers.MarkerStyle.markers
4143

0 commit comments

Comments
 (0)