diff --git a/crates/db/dev-db.db b/crates/db/dev-db.db new file mode 100644 index 0000000000..199d0a2040 Binary files /dev/null and b/crates/db/dev-db.db differ diff --git a/crates/db/src/test/generate-db.rs b/crates/db/src/test/generate-db.rs new file mode 100644 index 0000000000..303549f3ec --- /dev/null +++ b/crates/db/src/test/generate-db.rs @@ -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 +// - diff --git a/crates/project_panel/src/project_panel.rs b/crates/project_panel/src/project_panel.rs index abd8f44603..b5d1d0caa3 100644 --- a/crates/project_panel/src/project_panel.rs +++ b/crates/project_panel/src/project_panel.rs @@ -375,6 +375,7 @@ impl ProjectPanel { } self.update_visible_entries(Some((worktree_id, entry_id)), cx); cx.focus_self(); + cx.notify(); } } }