src/eric7/Debugger/VariablesViewer.py

branch
eric7
changeset 10928
46651e194fbe
parent 10703
120b22aaec31
child 11000
f8371a2dd08f
equal deleted inserted replaced
10927:ce599998be7d 10928:46651e194fbe
20 pyqtSignal, 20 pyqtSignal,
21 ) 21 )
22 from PyQt6.QtGui import QBrush, QFontMetrics 22 from PyQt6.QtGui import QBrush, QFontMetrics
23 from PyQt6.QtWidgets import QAbstractItemView, QMenu, QToolTip, QTreeView 23 from PyQt6.QtWidgets import QAbstractItemView, QMenu, QToolTip, QTreeView
24 24
25 from eric7 import Preferences, Utilities 25 from eric7 import EricUtilities, Preferences
26 from eric7.DebugClients.Python.DebugConfig import UnknownAttributeValueMarker 26 from eric7.DebugClients.Python.DebugConfig import UnknownAttributeValueMarker
27 from eric7.EricWidgets.EricApplication import ericApp 27 from eric7.EricWidgets.EricApplication import ericApp
28 28
29 from .Config import ConfigVarTypeDispStrings 29 from .Config import ConfigVarTypeDispStrings
30 30
632 tooltip = node.sort 632 tooltip = node.sort
633 else: 633 else:
634 return None 634 return None
635 635
636 if Qt.mightBeRichText(tooltip): 636 if Qt.mightBeRichText(tooltip):
637 tooltip = Utilities.html_encode(tooltip) 637 tooltip = EricUtilities.html_encode(tooltip)
638 638
639 if column == 0: 639 if column == 0:
640 indentation = self.treeView.indentation() 640 indentation = self.treeView.indentation()
641 indentCount = 0 641 indentCount = 0
642 currentNode = node 642 currentNode = node

eric ide

mercurial