diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d6910d..7b9ec68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,21 @@ # Changelog - [Changelog](#changelog) + - [0.1.3](#013) - [0.1.2](#012) - [0.1.1](#011) - [0.1.0](#010) --- +## 0.1.3 + +Released on 14/12/2020 + +- Enhancements: + - File explorer: + - Fixed color mismatch in local explorer + ## 0.1.2 Released on 13/12/2020 diff --git a/src/ui/activities/filetransfer_activity/layout.rs b/src/ui/activities/filetransfer_activity/layout.rs index 52ca901..6277781 100644 --- a/src/ui/activities/filetransfer_activity/layout.rs +++ b/src/ui/activities/filetransfer_activity/layout.rs @@ -172,7 +172,7 @@ impl FileTransferActivity { .borders(Borders::ALL) .border_style(match self.input_field { InputField::Explorer => match self.tab { - FileExplorerTab::Local => Style::default().fg(Color::Yellow), + FileExplorerTab::Local => Style::default().fg(Color::LightYellow), _ => Style::default(), }, _ => Style::default(),