-
Bug
-
Resolution: Won't Do
-
P1: Critical
-
None
-
6.3.2, 6.4.0
For WebAssembly QGuiApplication::exit() doesn't exit any more using Qt 6.3.x and 6.4.x so as a result, showExit is not being called any more :
var qtLoader = QtLoader({
...
showExit: function() {
status.innerHTML = "Application exit";
if (qtLoader.exitCode !== undefined)
status.innerHTML += " with code " + qtLoader.exitCode;
if (qtLoader.exitText !== undefined)
status.innerHTML += " (" + qtLoader.exitText + ")";
spinner.style.display = 'block';
canvas.style.display = 'none';
},
...
It did using Qt 6.2.2 .