Added notify call

This commit is contained in:
Mikayla Maki 2022-10-24 13:18:02 -07:00
parent bd35468d18
commit 40290a9a42
3 changed files with 7 additions and 0 deletions

BIN
crates/db/dev-db.db Normal file

Binary file not shown.

View file

@ -0,0 +1,6 @@
// What do I want for testing:
// - A command to run, that exercises the existing APIs to generate a database, which I can then
// use a sqlite browser to develop queries against.
// - A way to generate arbitrary database states which are then hooked into a dev build of rust for testing
// -

View file

@ -375,6 +375,7 @@ impl ProjectPanel {
} }
self.update_visible_entries(Some((worktree_id, entry_id)), cx); self.update_visible_entries(Some((worktree_id, entry_id)), cx);
cx.focus_self(); cx.focus_self();
cx.notify();
} }
} }
} }