diff -r bf6be3cff6cf -r a0b6acee2c20 eric6/Debugger/DebugViewer.py --- a/eric6/Debugger/DebugViewer.py Sun Feb 09 19:27:49 2020 +0100 +++ b/eric6/Debugger/DebugViewer.py Mon Feb 10 18:49:49 2020 +0100 @@ -65,7 +65,7 @@ self.setWindowIcon(UI.PixmapCache.getIcon("eric")) self.__mainLayout = QVBoxLayout() - self.__mainLayout.setContentsMargins(0, 0, 0, 0) + self.__mainLayout.setContentsMargins(0, 3, 0, 0) self.setLayout(self.__mainLayout) # add the viewer showing the connected debug backends @@ -432,7 +432,8 @@ @param debuggerId ID of the debugger backend @type str """ - self.__setDebuggerIconAndState(debuggerId, "mediaPlaybackPause", "broken") + self.__setDebuggerIconAndState(debuggerId, "mediaPlaybackPause", + "broken") def __clientSyntaxError(self, message, filename, lineNo, characterNo, debuggerId): @@ -450,7 +451,8 @@ @param debuggerId ID of the debugger backend @type str """ - self.__setDebuggerIconAndState(debuggerId, "syntaxError22", "exception") + self.__setDebuggerIconAndState(debuggerId, "syntaxError22", + "exception") def __clientException(self, exceptionType, exceptionMessage, stackTrace, debuggerId):