1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 21:32:13 +03:00

launcher: unbreak filtered view

I refactored and accidentally used entries instead of filtered_entries
This commit is contained in:
Wez Furlong 2022-01-05 19:56:14 -07:00
parent 41ce7903a9
commit 9f6f901f5b

View File

@ -569,7 +569,7 @@ impl LauncherState {
}
fn launch(&self, active_idx: usize) {
match self.entries[active_idx].clone().kind {
match self.filtered_entries[active_idx].clone().kind {
EntryKind::Attach { domain } => {
promise::spawn::spawn_into_main_thread(async move {
// We can't inline do_domain_attach here directly