--- a/Debugger/DebugViewer.py Sat Jun 15 15:57:36 2013 +0200 +++ b/Debugger/DebugViewer.py Mon Jun 17 19:33:10 2013 +0200 @@ -365,6 +365,7 @@ """ Public slot to show the call stack of the program being debugged. """ + block = self.stackComboBox.blockSignals(True) self.framenr = 0 self.stackComboBox.clear() self.currentStack = stack @@ -373,6 +374,7 @@ # just show base filename to make it readable s = (os.path.basename(s[0]), s[1], s[2]) self.stackComboBox.addItem('{0}:{1}:{2}'.format(*s)) + self.stackComboBox.blockSignals(block) def setVariablesFilter(self, globalsFilter, localsFilter): """