(self)
| 783 | print(f'Project "{self.cfg["Task"]}" successfully loaded.') |
| 784 | |
| 785 | def darkmode(self): |
| 786 | dark_stylesheet = qdarkstyle.load_stylesheet_pyside2() |
| 787 | self.app.setStyleSheet(dark_stylesheet) |
| 788 | |
| 789 | names = ["new_project2.png", "open2.png", "help2.png"] |
| 790 | self.remove_action() |
| 791 | self.create_actions(names) |
| 792 | self.update_menu_bar() |
| 793 | self.create_toolbar() |
| 794 | |
| 795 | def lightmode(self): |
| 796 | from qdarkstyle.light.palette import LightPalette |
nothing calls this directly
no test coverage detected