Merge pull request #2066 from petrasovaa/patch-3

Fix invisible text in lib.plot with dark theme
This commit is contained in:
Scott Talbert
2021-12-30 09:03:21 -05:00
committed by GitHub

View File

@@ -71,6 +71,7 @@ class PlotCanvas(wx.Panel):
self.border = (1, 1)
self.SetBackgroundColour("white")
self.SetForegroundColour("black")
# Create some mouse events for zooming
self.canvas.Bind(wx.EVT_LEFT_DOWN, self.OnMouseLeftDown)