Skip to content

Closing the QML window leaves the Julia process running in latest version(v0.13.0) #237

@rakeshksr

Description

@rakeshksr

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
// 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
    }
}
# main.jl

using QML

qml_file = joinpath(dirname(@__FILE__), "helloworld.qml")
loadqml(qml_file)

exec()
  1. Run the file julia --project=. main.jl
  2. Close hello world application window.

Additional information:

Video to demonstrating issue

qml_test.mp4

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions