Skip to content

Commit

Permalink
Merge pull request #4028 from vallsv/fix-mpl-no-background
Browse files Browse the repository at this point in the history
Fixed mpl marker without background
  • Loading branch information
t20100 authored Dec 21, 2023
2 parents 2bc2671 + 94a0a54 commit 6a86f24
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/silx/gui/plot/backends/BackendMatplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -962,6 +962,9 @@ def addMarker(
else:
assert False

if bgcolor is None:
bgcolor = "none"

marker = self._getMarkerFromSymbol(symbol)
if x is not None and y is not None:
line = ax.plot(
Expand Down

0 comments on commit 6a86f24

Please sign in to comment.