slint-ui / slint

Slint is a declarative GUI toolkit to build native user interfaces for Rust, C++, or JavaScript apps.
https://slint.dev
Other
17.64k stars 607 forks source link

Fix wrong optimization trying to merge common properties around assignments #6768

Closed ogoffart closed 1 week ago

ogoffart commented 1 week ago

the deduplicate_property_read was bailing out the replacement if one part of the coinditional branch do assignment. But the other part might already have partial assignment, so we must continue

Fixes #6616