ProjectController.py
changeset 1484 d5efbb20927e
parent 1451 94e620cbd9de
child 1511 91538d0c242c
equal deleted inserted replaced
1483:004f9c52f7d8 1484:d5efbb20927e
  1503         if self.AppFrame is not None:
  1503         if self.AppFrame is not None:
  1504             self.AppFrame.LogViewer.SetLogSource(connector)
  1504             self.AppFrame.LogViewer.SetLogSource(connector)
  1505         if connector is not None:
  1505         if connector is not None:
  1506             if self.StatusTimer is not None:
  1506             if self.StatusTimer is not None:
  1507                 # Start the status Timer
  1507                 # Start the status Timer
  1508                 self.StatusTimer.Start(milliseconds=500, oneShot=False)
  1508                 # Suppress WXDEBUG assertions, as happens by default with wx2.8
       
  1509                 try:
       
  1510                     self.StatusTimer.Start(milliseconds=500, oneShot=False)
       
  1511                 except:
       
  1512                     pass
  1509         else:
  1513         else:
  1510             if self.StatusTimer is not None:
  1514             if self.StatusTimer is not None:
  1511                 # Stop the status Timer
  1515                 # Stop the status Timer
  1512                 self.StatusTimer.Stop()
  1516                 self.StatusTimer.Stop()
  1513             if update_status:
  1517             if update_status: