@@ -61,7 +61,7 @@ def execute_subprocess(command: List[str], arguments: List[str], environment: Ma
61
61
out , err = out .decode ("utf-8" , "ignore" ) if out else "" , err .decode ("utf-8" , "ignore" ) if err else ""
62
62
63
63
# lk: the following is a work-around for wineserver sometimes hanging around after
64
- proc = get_configured_subprocess (command + ["wineboot" , "-k " ], environment )
64
+ proc = get_configured_subprocess (command + ["wineboot" , "-e " ], environment )
65
65
_ , _ = proc .communicate ()
66
66
return out , err
67
67
@@ -77,7 +77,7 @@ def execute_qprocess(command: List[str], arguments: List[str], environment: Mapp
77
77
proc .deleteLater ()
78
78
79
79
# lk: the following is a work-around for wineserver sometimes hanging around after
80
- proc = get_configured_qprocess (command + ["wineboot" , "-k " ], environment )
80
+ proc = get_configured_qprocess (command + ["wineboot" , "-e " ], environment )
81
81
proc .start ()
82
82
proc .waitForFinished (- 1 )
83
83
proc .deleteLater ()
@@ -166,5 +166,5 @@ def get_host_environment(app_environment: Dict, silent: bool = True) -> Dict:
166
166
_environ ["WINEDEBUG" ] = "-all"
167
167
_environ ["WINEDLLOVERRIDES" ] = "winemenubuilder=d;mscoree=d;mshtml=d;"
168
168
# lk: pressure-vessel complains about this but it doesn't fail due to it
169
- _environ ["DISPLAY" ] = ""
169
+ # _environ["DISPLAY"] = ""
170
170
return _environ
0 commit comments