Skip to content

Commit

Permalink
Added None as a line option
Browse files Browse the repository at this point in the history
  • Loading branch information
SilkeSchomann committed Jun 12, 2024
1 parent 6a86367 commit 4aa5849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mslice/plotting/plot_window/plot_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ class LegendAndLineOptionsSetter(QtWidgets.QWidget):
"""This is a widget that has various legend and line controls for each line of a plot"""

# dictionaries used to convert from matplotlib arguments to UI selection and vice versa
styles = {'-': 'Solid', '--': 'Dashed', '-.': 'Dashdot', ':': 'Dotted'}
styles = {'-': 'Solid', '--': 'Dashed', '-.': 'Dashdot', ':': 'Dotted', 'None': 'None'}

markers = {'o': 'Circle', ',': 'Pixel', '.': 'Point', 'v': 'Triangle down', '^': 'Triangle up',
'<': 'Triangle_left', '>': 'Triangle right', '1': 'Arrow down', '2': 'Arrow up',
Expand Down

0 comments on commit 4aa5849

Please sign in to comment.