Skip to content

Commit

Permalink
set wmclass on X
Browse files Browse the repository at this point in the history
  • Loading branch information
zeptofine committed Jan 1, 2025
1 parent 9faf731 commit 0983aa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion source/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ def main():
logger.info(f"Blender Launcher Version: {version}")

# Create an instance of application and set its core properties
app = QApplication([])
app = QApplication(["blender-launcher-v2"])
app.setApplicationName("blender-launcher-v2")
app.setStyle("Fusion")
app.setApplicationVersion(str(version))

Expand Down
1 change: 0 additions & 1 deletion source/widgets/settings_window/general_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import os
import sys
from pathlib import Path
from turtle import title

from modules.settings import (
get_actual_library_folder,
Expand Down

0 comments on commit 0983aa1

Please sign in to comment.