mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-04 18:58:36 +00:00
Fix visibility on drop shadow
`visible:false` would't hide the drop shadow Fixes: #1460
This commit is contained in:
parent
01a9309895
commit
151df7167d
1 changed files with 1 additions and 1 deletions
|
@ -137,6 +137,7 @@ pub async fn run_passes(
|
|||
&global_type_registry.borrow(),
|
||||
diag,
|
||||
);
|
||||
visible::handle_visible(component, &global_type_registry.borrow());
|
||||
lower_shadows::lower_shadow_properties(component, &doc.local_registry, diag);
|
||||
lower_property_to_element::lower_property_to_element(
|
||||
component,
|
||||
|
@ -163,7 +164,6 @@ pub async fn run_passes(
|
|||
diag,
|
||||
);
|
||||
clip::handle_clip(component, &global_type_registry.borrow(), diag);
|
||||
visible::handle_visible(component, &global_type_registry.borrow());
|
||||
if compiler_config.accessibility {
|
||||
lower_accessibility::lower_accessibility_properties(component, diag);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue