Closing the QML window leaves the Julia process running instead of exiting cleanly. This happens in latest version only, v0.12.1 works fine. ### Steps to reproduce: 1. Create minimal helloworld project in qml ```qml // helloworld.qml import QtQuick import QtQuick.Window Window { visible: true width: 400 height: 300 title: "Hello World" Text { anchors.centerIn: parent text: "Hello, World!" font.pointSize: 20 } } ``` ```julia # main.jl using QML qml_file = joinpath(dirname(@__FILE__), "helloworld.qml") loadqml(qml_file) exec() ``` 2. Run the file `julia --project=. main.jl` 3. Close hello world application window. ### Additional information: Video to demonstrating issue https://github.com/user-attachments/assets/162e65b8-3487-4b9b-b584-bab86848db61
Closing the QML window leaves the Julia process running instead of exiting cleanly.
This happens in latest version only, v0.12.1 works fine.
Steps to reproduce:
julia --project=. main.jlAdditional information:
Video to demonstrating issue
qml_test.mp4