mirror of
https://github.com/veeso/termscp.git
synced 2026-09-25 13:31:26 -07:00
fix: popup texts
This commit is contained in:
@@ -131,7 +131,10 @@ impl FilterPopup {
|
|||||||
"regex or wildmatch",
|
"regex or wildmatch",
|
||||||
Style::default().fg(Color::Rgb(128, 128, 128)),
|
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)
|
.foreground(color)
|
||||||
.input_type(InputType::Text)
|
.input_type(InputType::Text)
|
||||||
.placeholder(
|
.placeholder("*.txt", Style::default().fg(Color::Rgb(128, 128, 128)))
|
||||||
"Search files by name",
|
.title("Search files by name or wildmatch", Alignment::Center),
|
||||||
Style::default().fg(Color::Rgb(128, 128, 128)),
|
|
||||||
)
|
|
||||||
.title("*.txt", Alignment::Center),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user