Problem with QCalendarWidget
Solved
Qt for WebAssembly
-
Hello I have created test app with WebAssembly, but after pressing month combo to select another month, the app frezze. Maybe someone knows how to fix it: ) I have Qt 6.5.3
Below error:
-
@apaczenko1993
Looking at the stack trace pane at the right you are actually getting an error message from the code. I presume that is cause of your "freeze" and you need to address that.I don't use WASM so I cannot answer further. But if you look at e.g. https://forum.qt.io/topic/134683/qt-6-3-asyncify that is to do with how you enable asyncify for WASM.
After I success compile qt6.3.0 with asyncify. I found it works!!!
-
-
adding this "QMAKE_LFLAGS += -sASYNCIFY -Os" in pro file solve problem, thanks!