eric7/QScintilla/EditorAssembly.py

branch
eric7
changeset 8356
68ec9c3d4de5
parent 8318
962bce857696
child 8358
144a6b854f70
equal deleted inserted replaced
8355:8a7677a63c8d 8356:68ec9c3d4de5
11 import contextlib 11 import contextlib
12 12
13 from PyQt6.QtCore import QTimer 13 from PyQt6.QtCore import QTimer
14 from PyQt6.QtWidgets import QWidget, QGridLayout, QComboBox 14 from PyQt6.QtWidgets import QWidget, QGridLayout, QComboBox
15 15
16 from E5Gui.E5Application import e5App 16 from E5Gui.EricApplication import ericApp
17 17
18 import UI.PixmapCache 18 import UI.PixmapCache
19 import Preferences 19 import Preferences
20 20
21 21
89 self.__membersBoundaries = {} 89 self.__membersBoundaries = {}
90 90
91 self.__activateOutline(self.__showOutline) 91 self.__activateOutline(self.__showOutline)
92 self.__activateCombos(not self.__showOutline) 92 self.__activateCombos(not self.__showOutline)
93 93
94 e5App().getObject("UserInterface").preferencesChanged.connect( 94 ericApp().getObject("UserInterface").preferencesChanged.connect(
95 self.__preferencesChanged) 95 self.__preferencesChanged)
96 96
97 def shutdownTimer(self): 97 def shutdownTimer(self):
98 """ 98 """
99 Public method to stop and disconnect the timer. 99 Public method to stop and disconnect the timer.

eric ide

mercurial