diff --git a/CHANGELOG.md b/CHANGELOG.md index 183b849..4d6910d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,8 @@ Released on 13/12/2020 - Possibility to abort file transfers - Enhancements: - File explorer: - - when file index is at the end of the list, moving down will set the current index to the first element and viceversa. + - When file index is at the end of the list, moving down will set the current index to the first element and viceversa. + - Selected file has now colourful background, instead of foreground, for a better readability. - Keybindings: - `E`: Delete file (Same as `DEL`); added because some keyboards don't have `DEL` (hey, that's my MacBook Air's keyboard!) - `Ctrl+C`: Abort transfer process diff --git a/src/ui/activities/filetransfer_activity/layout.rs b/src/ui/activities/filetransfer_activity/layout.rs index 1a29107..6dda0ea 100644 --- a/src/ui/activities/filetransfer_activity/layout.rs +++ b/src/ui/activities/filetransfer_activity/layout.rs @@ -191,7 +191,8 @@ impl FileTransferActivity { .start_corner(Corner::TopLeft) .highlight_style( Style::default() - .fg(Color::Yellow) + .fg(Color::Black) + .bg(Color::LightYellow) .add_modifier(Modifier::BOLD), ) } @@ -231,7 +232,8 @@ impl FileTransferActivity { .start_corner(Corner::TopLeft) .highlight_style( Style::default() - .fg(Color::LightBlue) + .bg(Color::LightBlue) + .fg(Color::Black) .add_modifier(Modifier::BOLD), ) }