5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog for the configuration of a keyboard shortcut. |
7 Module implementing a dialog for the configuration of a keyboard shortcut. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSignal, Qt, QEvent, QKeyCombination |
10 from PyQt6.QtCore import QEvent, QKeyCombination, Qt, pyqtSignal |
11 from PyQt6.QtGui import QKeySequence |
11 from PyQt6.QtGui import QKeySequence |
12 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
12 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
13 |
13 |
14 from .Ui_ShortcutDialog import Ui_ShortcutDialog |
14 from .Ui_ShortcutDialog import Ui_ShortcutDialog |
15 |
15 |