Remove EVT_ERASE_BACKGROUND events - pretty sure these were there for older versions of wx where the background wasn't erased properly

This commit is contained in:
Ryan Holmes
2017-06-14 01:02:27 -04:00
parent bec26d5d05
commit 8c5c7fba29
10 changed files with 0 additions and 79 deletions

View File

@@ -102,14 +102,10 @@ class PFPanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
self.Bind(wx.EVT_PAINT, self.OnPaint)
self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnBkErase)
def OnPaint(self, event):
event.Skip()
def OnBkErase(self, event):
pass
class OpenFitsThread(threading.Thread):
def __init__(self, fits, callback):