3541 |
3541 |
3542 tbList = [] |
3542 tbList = [] |
3543 for name, (text, tb) in list(self.__toolbars.items()): |
3543 for name, (text, tb) in list(self.__toolbars.items()): |
3544 tbList.append((text, tb, name)) |
3544 tbList.append((text, tb, name)) |
3545 |
3545 |
3546 for text, tb, name in sorted(tbList): |
3546 for text, tb, name in sorted(tbList, key=lambda t: t[0]): |
3547 act = menu.addAction(text) |
3547 act = menu.addAction(text) |
3548 act.setCheckable(True) |
3548 act.setCheckable(True) |
3549 act.setChecked(not tb.isHidden()) |
3549 act.setChecked(not tb.isHidden()) |
3550 act.setData(name) |
3550 act.setData(name) |
3551 menu.addSeparator() |
3551 menu.addSeparator() |