File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424ICON = os .sep .join ((PROGDIR , "img" , "bigbashview.svg" ))
2525LOGO = os .sep .join ((PROGDIR , "img" , "bigbashview.svg" ))
2626TITLE = None
27+ PROCESS = 'BigBashView'
2728ROOT_FILE = False
2829ADDRESS = '127.0.0.1'
2930PORT = 19000
Original file line number Diff line number Diff line change 4141from PySide6 .QtWebEngineCore import QWebEnginePage , QWebEngineDownloadRequest
4242from PySide6 .QtWebChannel import QWebChannel
4343
44- from bbv .globaldata import ICON , TITLE
44+ from bbv .globaldata import ICON , TITLE , PROCESS
4545
4646# Import gettext module for translations
4747import gettext
@@ -116,6 +116,8 @@ def __init__(self):
116116
117117 # Set window icon and title
118118 self .setWindowIcon (QIcon (ICON ))
119+ self .app .setDesktopFileName (PROCESS )
120+
119121 if TITLE :
120122 self .app .setApplicationName (TITLE )
121123 self .setWindowTitle (TITLE )
You can’t perform that action at this time.
0 commit comments