Fix invisible text in lib.plot with dark theme

This fixes invisible white text on white background with dark themes.
This commit is contained in:
Anna Petrasova
2021-12-29 23:29:44 -05:00
committed by GitHub
parent 40e612923d
commit 92ca5c55a6

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)