summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKid <44045911+kidonng@users.noreply.github.com>2021-08-22 03:07:35 +0000
committerGitHub <noreply@github.com>2021-08-22 03:07:35 +0000
commit019e4cb65e6d6302e08692c446bac56fb3beee25 (patch)
tree66680de2d10b6d84c51c3ecaac0e17b0ef995aec
parent8977c17bcb10373c33d695dd682781fd9590e4e7 (diff)
Improve mark widget tip style
-rw-r--r--src/interactive/widgets/mark.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interactive/widgets/mark.rs b/src/interactive/widgets/mark.rs
index 0cc48f2..d28b549 100644
--- a/src/interactive/widgets/mark.rs
+++ b/src/interactive/widgets/mark.rs
@@ -364,7 +364,7 @@ impl MarkPane {
Paragraph::new(Text::from(Spans::from(vec![
#[cfg(feature = "trash-move")]
Span::styled(
- " Ctrl + t",
+ " Ctrl + t ",
Style {
fg: Color::White.into(),
bg: Color::Black.into(),
@@ -374,9 +374,10 @@ impl MarkPane {
#[cfg(feature = "trash-move")]
Span::styled(" to trash or ", default_style),
Span::styled(
- " Ctrl + r",
+ " Ctrl + r ",
Style {
fg: Color::LightRed.into(),
+ bg: Color::Black.into(),
add_modifier: default_style.add_modifier | Modifier::RAPID_BLINK,
..default_style
},