We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96f1d45 commit 1705884Copy full SHA for 1705884
cefpython/cef1/wx-subpackage/chromectrl.py
@@ -134,8 +134,9 @@ def __del__(self):
134
'''cleanup stuff'''
135
if self._useTimer:
136
self.timer.Stop()
137
- else:
138
- self.Unbind(wx.EVT_IDLE)
+ # Calling Unbind() is unnecessary and will cause problems on Windows 8, see:
+ # https://groups.google.com/d/topic/cefpython/iXE7e1ekArI/discussion
139
+ # | self.Unbind(wx.EVT_IDLE)
140
self.browser.CloseBrowser()
141
142
def _CreateTimer(self, millis):
0 commit comments