From c507d5470098ec6f9099d1fcdc1c862b0efe4476 Mon Sep 17 00:00:00 2001 From: veeso Date: Wed, 2 Oct 2024 12:59:53 +0200 Subject: [PATCH] fix: popup texts --- src/ui/activities/filetransfer/components/popups.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ui/activities/filetransfer/components/popups.rs b/src/ui/activities/filetransfer/components/popups.rs index 76cb886..b9a4f14 100644 --- a/src/ui/activities/filetransfer/components/popups.rs +++ b/src/ui/activities/filetransfer/components/popups.rs @@ -131,7 +131,10 @@ impl FilterPopup { "regex or wildmatch", Style::default().fg(Color::Rgb(128, 128, 128)), ) - .title("Filter files by regex or wildmatch", Alignment::Center), + .title( + "Filter files by regex or wildmatch in the current directory", + Alignment::Center, + ), } } } @@ -596,11 +599,8 @@ impl FindPopup { ) .foreground(color) .input_type(InputType::Text) - .placeholder( - "Search files by name", - Style::default().fg(Color::Rgb(128, 128, 128)), - ) - .title("*.txt", Alignment::Center), + .placeholder("*.txt", Style::default().fg(Color::Rgb(128, 128, 128))) + .title("Search files by name or wildmatch", Alignment::Center), } } }