3487 |
3487 |
3488 tbList = [] |
3488 tbList = [] |
3489 for name, (text, tb) in list(self.__toolbars.items()): |
3489 for name, (text, tb) in list(self.__toolbars.items()): |
3490 tbList.append((text, tb, name)) |
3490 tbList.append((text, tb, name)) |
3491 |
3491 |
3492 for text, tb, name in sorted(tbList): |
3492 for text, tb, name in sorted(tbList, key=lambda t: t[0]): |
3493 act = menu.addAction(text) |
3493 act = menu.addAction(text) |
3494 act.setCheckable(True) |
3494 act.setCheckable(True) |
3495 act.setChecked(not tb.isHidden()) |
3495 act.setChecked(not tb.isHidden()) |
3496 act.setData(name) |
3496 act.setData(name) |
3497 menu.addSeparator() |
3497 menu.addSeparator() |