Skip to content

Commit 0a97368

Browse files
committed
plotmarks is a tikz library
1 parent cbdc8bd commit 0a97368

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

matplotlib2tikz/line2d.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,14 +287,14 @@ def _mpl_marker2pgfp_marker(data, mpl_marker, marker_face_color):
287287
pgfplots_marker = _MP_MARKER2PGF_MARKER[mpl_marker]
288288
if (marker_face_color is not None) and pgfplots_marker == 'o':
289289
pgfplots_marker = '*'
290-
data['pgfplots libs'].add('plotmarks')
290+
data['tikz libs'].add('plotmarks')
291291
marker_options = None
292292
return (data, pgfplots_marker, marker_options)
293293
except KeyError:
294294
pass
295295
# try plotmarks list
296296
try:
297-
data['pgfplots libs'].add('plotmarks')
297+
data['tikz libs'].add('plotmarks')
298298
pgfplots_marker, marker_options = _MP_MARKER2PLOTMARKS[mpl_marker]
299299
if marker_face_color is not None and \
300300
marker_face_color.lower() != 'none' and \

0 commit comments

Comments
 (0)