Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/stores/src/scope.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ impl<Lens> SelectorScope<Lens> {

/// Track this scope recursively.
pub fn track(&self) {
self.store.track_recursive(&self.path);
self.store.track_deep(&self.path);
}

/// Mark this scope as dirty recursively.
Expand All @@ -161,7 +161,7 @@ impl<Lens> SelectorScope<Lens> {

/// Mark this scope as dirty shallowly.
pub fn mark_dirty_shallow(&self) {
self.store.mark_dirty_shallow(&self.path);
self.store.mark_node_dirty(&self.path);
}

/// Mark this scope as dirty at and after the given index.
Expand Down Expand Up @@ -210,7 +210,7 @@ impl<Lens: Readable> Readable for SelectorScope<Lens> {
}

fn subscribers(&self) -> Subscribers {
self.store.subscribers(&self.path)
self.store.shallow_subscribers(&self.path)
}
}

Expand Down
Loading
Loading