fix(core): WindowRoute signals owned by ROOT scope #83
No reviewers
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_archipelagos!83
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "development_fix_window_route_scope"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Fixes the Dioxus signal scope-ownership violation that caused the console warning storm → UI freeze with multiple islands open.
WindowRouteContext::new()now creates its signals inScopeId::ROOTviaSignal::new_in_scope, so root-level effects (URL sync atmain.rs:929, keyboard bridge) can read them without triggering the "used in non-descendant scope" warning on every render.Test plan
cargo check -p hero_archipelagos_coregreencargo fmt --check -p hero_archipelagos_coregreendioxus-signals warnings.rs:26entries.Closes #81
WIP: fix(core): WindowRoute signals owned by ROOT scopeto fix(core): WindowRoute signals owned by ROOT scope