From c57e6bc784d116cbad0e040963db0c8243ea34c5 Mon Sep 17 00:00:00 2001 From: 5brian Date: Thu, 29 May 2025 12:09:07 -0400 Subject: [PATCH] tab_switcher: Add placeholder text (#31697) | Before | After | |---|---| |image|image| Release Notes: - N/A --- crates/tab_switcher/src/tab_switcher.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/tab_switcher/src/tab_switcher.rs b/crates/tab_switcher/src/tab_switcher.rs index 25cfcfba7b6c6fe237790f5f5ceb13562b65db32..3474383f9dab8ab69caffd3471072153b85879ac 100644 --- a/crates/tab_switcher/src/tab_switcher.rs +++ b/crates/tab_switcher/src/tab_switcher.rs @@ -450,7 +450,7 @@ impl PickerDelegate for TabSwitcherDelegate { type ListItem = ListItem; fn placeholder_text(&self, _window: &mut Window, _cx: &mut App) -> Arc { - Arc::default() + "Search all tabs…".into() } fn no_matches_text(&self, _window: &mut Window, _cx: &mut App) -> Option {