eric6/Debugger/ExceptionLogger.py

changeset 7544
366c7c6582d8
parent 7360
9190402e4505
child 7564
787684e6f2f3
child 7780
41420f82c0ac
--- a/eric6/Debugger/ExceptionLogger.py	Sat Apr 18 16:07:05 2020 +0200
+++ b/eric6/Debugger/ExceptionLogger.py	Sat Apr 18 16:08:05 2020 +0200
@@ -103,9 +103,12 @@
             return
         
         if exceptionMessage == '':
-            itm.setText(0, "{0}".format(exceptionType))
+            text = "{0}".format(exceptionType)
         else:
-            itm.setText(0, "{0}, {1}".format(exceptionType, exceptionMessage))
+            text = "{0}, {1}".format(exceptionType, exceptionMessage)
+        
+        itm.setText(0, text)
+        itm.setToolTip(0, text)
         
         # now add the call stack, most recent call first
         for entry in stackTrace:

eric ide

mercurial