##// END OF EJS Templates
Remove one more Yield, to make the frontend more robust under Vista.
gvaroquaux -
Show More
@@ -233,8 +233,7 b' class WxController(ConsoleWidget, PrefilterFrontEnd):'
233 for name in symbol_string.split('.')[1:] + ['__doc__']:
233 for name in symbol_string.split('.')[1:] + ['__doc__']:
234 symbol = getattr(symbol, name)
234 symbol = getattr(symbol, name)
235 self.AutoCompCancel()
235 self.AutoCompCancel()
236 wx.Yield()
236 wx.CallAfter(self.CallTipShow, self.GetCurrentPos(), symbol)
237 self.CallTipShow(self.GetCurrentPos(), symbol)
238 except:
237 except:
239 # The retrieve symbol couldn't be converted to a string
238 # The retrieve symbol couldn't be converted to a string
240 pass
239 pass
General Comments 0
You need to be logged in to leave comments. Login now