diff -r 17fb004af51d -r 890dfe038613 eric7/Debugger/DebugUI.py --- a/eric7/Debugger/DebugUI.py Sun Aug 29 17:50:13 2021 +0200 +++ b/eric7/Debugger/DebugUI.py Sun Aug 29 19:19:31 2021 +0200 @@ -1434,7 +1434,9 @@ elif scope == 0: self.debugViewer.showVariables(variables, False) elif scope == -1: - vlist = [(self.tr('No locals available.'), '', '')] + vlist = [ + (self.tr('No locals available.'), '', '', False, -2, '') + ] self.debugViewer.showVariables(vlist, False) def __clientVariable(self, scope, variables, debuggerId):