unmark changed callback as experimental

Closes #112
This commit is contained in:
Olivier Goffart 2024-09-09 14:40:16 +02:00 committed by GitHub
parent e79dcc4bec
commit 0feb674612
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 15 deletions

View file

@ -1354,12 +1354,6 @@ impl Element {
}
for ch in node.PropertyChangedCallback() {
if !diag.enable_experimental && !tr.expose_internal_types {
diag.push_error(
"Change callbacks are experimental and not yet implemented in this version of Slint".into(),
&ch,
);
}
let Some(prop) = parser::identifier_text(&ch.DeclaredIdentifier()) else { continue };
let lookup_result = r.lookup_property(&prop);
if !lookup_result.is_valid() {