Fixed color mismatch in local explorer tab (Yellow/LightYellow)

This commit is contained in:
ChristianVisintin
2020-12-14 09:01:35 +01:00
parent db38a53172
commit 2b8be4d1e9
2 changed files with 10 additions and 1 deletions

View File

@@ -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

View File

@@ -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(),