eric6/Debugger/DebugUI.py

changeset 8222
5994b80b8760
parent 8218
7c09585bd960
child 8230
8b5c6896655b
equal deleted inserted replaced
8221:0572a215bd2f 8222:5994b80b8760
1308 self.__getClientVariables(debuggerId) 1308 self.__getClientVariables(debuggerId)
1309 self.__getClientDisassembly(debuggerId) 1309 self.__getClientDisassembly(debuggerId)
1310 self.ui.setDebugProfile() 1310 self.ui.setDebugProfile()
1311 self.debugActGrp.setEnabled(True) 1311 self.debugActGrp.setEnabled(True)
1312 return 1312 return
1313 elif res == E5MessageBox.Ignore: 1313 elif (
1314 if exceptionType not in self.excIgnoreList: 1314 res == E5MessageBox.Ignore and
1315 self.excIgnoreList.append(exceptionType) 1315 exceptionType not in self.excIgnoreList
1316 ):
1317 self.excIgnoreList.append(exceptionType)
1316 1318
1317 if self.lastAction != -1: 1319 if self.lastAction != -1:
1318 if self.lastAction == 2: 1320 if self.lastAction == 2:
1319 self.__specialContinue(debuggerId) 1321 self.__specialContinue(debuggerId)
1320 else: 1322 else:

eric ide

mercurial