Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Property recursion panic when having changed event on geometry property in a layout with condition #7849

Open
zhuyu4839 opened this issue Mar 12, 2025 · 5 comments
Labels
a:layouts Related to the layouting and positioning of the elements (mO,bT) bug Something isn't working

Comments

@zhuyu4839
Copy link

Bug Description

Image
Crash when enable all of change height at line 8 and VerticalLayout at line 21 and for loop at line 27.

Reproducible Code (if applicable)

import { ScrollView } from "std-widgets.slint";

component MyBox inherits Rectangle {
    preferred-height: 100px;
    preferred-width: 100px;
    background: red;

    changed height => {}    // TODO crash
}

export component AppWindow inherits Window {
    title: "Slint Demo";
//    icon: @image-url("app.svg");
    preferred-width: 1280px;
    preferred-height: 720px;
    default-font-size: 14px;

    ScrollView {
        vertical-scrollbar-policy: always-off;

        VerticalLayout {    // TODO crash
            Rectangle {
                VerticalLayout {
                    alignment: start;
                    padding-top: 20px;
                    MyBox {}    // TODO no crash
                    for i in 5: gb := MyBox {}  // TODO crash
                }
            }
        }
    }
}

Environment Details

  • Slint Version: 1.10.0
  • Platform/OS: Windows 10 LTSC 2019
  • Programming Language: Rust
  • Backend/Renderer: ...

Product Impact

No response

@zhuyu4839 zhuyu4839 added bug Something isn't working need triaging Issue that the owner of the area still need to triage labels Mar 12, 2025
@zhuyu4839
Copy link
Author

Crash when preview by RustRover plugin except VSCode plugin.

@hunger
Copy link
Member

hunger commented Mar 13, 2025

Slintpad crashes (both 1.10 and master), too, with this message in the web developer console:

panicked at /home/runner/work/slint/slint/internal/core/properties.rs:523:9:
Recursion detected

@hunger
Copy link
Member

hunger commented Mar 13, 2025

This is the smallest I could reduce the example down to:

export component AppWindow inherits Window {
    VerticalLayout {
        Rectangle {
            changed height => {}
        }
        if true: Rectangle {
            changed height => {}
        }
    }
}

@hunger hunger added the a:layouts Related to the layouting and positioning of the elements (mO,bT) label Mar 13, 2025
@ogoffart ogoffart changed the title Crash when enable componet's changed heigth in ScrollView. Property recursion panic when having changed event on geometry property in a layout with condition Mar 13, 2025
@ogoffart
Copy link
Member

Quite similar to #7402
initializing the change event basically query the property as the change tracker are initialized

@ogoffart ogoffart removed the need triaging Issue that the owner of the area still need to triage label Mar 13, 2025
@novakduc
Copy link

novakduc commented Mar 23, 2025

Just a small add-on. If we use VerticalLayout as the parent component, we get a crash with changed height callback function. With HorizontalLayout, it happens when with changed width callback.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:layouts Related to the layouting and positioning of the elements (mO,bT) bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants