Skip to content

Commit a489dfd

Browse files
committed
feat: set application name
1 parent 76ef16d commit a489dfd

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

manim_slides/present.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -791,6 +791,7 @@ def value_proc(value: str) -> List[str]:
791791
)
792792

793793
app = QApplication(sys.argv)
794+
app.setApplicationName("Manim Slides")
794795
a = App(
795796
presentations,
796797
config=config,

manim_slides/wizard.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ def _init(config_path, force, merge, skip_interactive=False):
173173
config = Config.parse_file(config_path)
174174

175175
app = QApplication(sys.argv)
176+
app.setApplicationName("Manim Slides Wizard")
176177
window = Wizard(config)
177178
window.show()
178179
app.exec()

0 commit comments

Comments
 (0)