src/eric7/Preferences/Shortcuts.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9482
a2bc06a54d9d
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
7 Module implementing functions dealing with keyboard shortcuts. 7 Module implementing functions dealing with keyboard shortcuts.
8 """ 8 """
9 9
10 import contextlib 10 import contextlib
11 11
12 from PyQt6.QtCore import QFile, QIODevice, QCoreApplication 12 from PyQt6.QtCore import QCoreApplication, QFile, QIODevice
13 from PyQt6.QtGui import QKeySequence 13 from PyQt6.QtGui import QKeySequence
14 14
15 from eric7.EricWidgets import EricMessageBox
15 from eric7.EricWidgets.EricApplication import ericApp 16 from eric7.EricWidgets.EricApplication import ericApp
16 from eric7.EricWidgets import EricMessageBox
17
18 from eric7.Preferences import Prefs, syncPreferences 17 from eric7.Preferences import Prefs, syncPreferences
19 18
20 19
21 def __readShortcut(act, category, prefClass): 20 def __readShortcut(act, category, prefClass):
22 """ 21 """

eric ide

mercurial