diff -r 14522ec8cd08 -r 066e6c78a367 Debugger/VariablesViewer.py --- a/Debugger/VariablesViewer.py Tue Nov 07 19:37:17 2017 +0100 +++ b/Debugger/VariablesViewer.py Wed Nov 08 19:05:55 2017 +0100 @@ -56,6 +56,9 @@ dvalue = QCoreApplication.translate( "VariableItem", "<double click to show value>") self.__tooltip = dvalue + elif dvalue == "@@TOO_BIG_TO_SHOW@@": + dvalue = QCoreApplication.translate( + "VariableItem", "<variable value is too big>") else: if Qt.mightBeRichText(dvalue): self.__tooltip = Utilities.html_encode(dvalue)