47 self.setupUi(self) |
46 self.setupUi(self) |
48 |
47 |
49 self.shortcutsList.headerItem().setText(self.shortcutsList.columnCount(), "") |
48 self.shortcutsList.headerItem().setText(self.shortcutsList.columnCount(), "") |
50 self.shortcutsList.header().setSortIndicator(0, Qt.AscendingOrder) |
49 self.shortcutsList.header().setSortIndicator(0, Qt.AscendingOrder) |
51 |
50 |
|
51 from .ShortcutDialog import ShortcutDialog |
52 self.shortcutDialog = ShortcutDialog() |
52 self.shortcutDialog = ShortcutDialog() |
53 self.shortcutDialog.shortcutChanged.connect(self.__shortcutChanged) |
53 self.shortcutDialog.shortcutChanged.connect(self.__shortcutChanged) |
54 |
54 |
55 def __resort(self): |
55 def __resort(self): |
56 """ |
56 """ |