From 4aa5849de23df47e52fa7e42085925524bca61dd Mon Sep 17 00:00:00 2001 From: Silke Schomann Date: Wed, 12 Jun 2024 10:26:55 +0100 Subject: [PATCH] Added None as a line option --- src/mslice/plotting/plot_window/plot_options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mslice/plotting/plot_window/plot_options.py b/src/mslice/plotting/plot_window/plot_options.py index d795cef9..6fab4f99 100644 --- a/src/mslice/plotting/plot_window/plot_options.py +++ b/src/mslice/plotting/plot_window/plot_options.py @@ -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',