354 itm = category.child(index) |
354 itm = category.child(index) |
355 txt = itm.data(0, self.objectNameRole) |
355 txt = itm.data(0, self.objectNameRole) |
356 for act in actions: |
356 for act in actions: |
357 if txt == act.objectName(): |
357 if txt == act.objectName(): |
358 act.setShortcut(QKeySequence(itm.text(1))) |
358 act.setShortcut(QKeySequence(itm.text(1))) |
359 act.setAlternateShortcut(QKeySequence(itm.text(2))) |
359 act.setAlternateShortcut(QKeySequence(itm.text(2)), removeEmpty=True) |
360 break |
360 break |
361 |
361 |
362 def on_buttonBox_accepted(self): |
362 def on_buttonBox_accepted(self): |
363 """ |
363 """ |
364 Private slot to handle the OK button press. |
364 Private slot to handle the OK button press. |