fix: Switch command line fg/bg colors
This commit is contained in:
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
- Skip unplayable tracks
|
- Skip unplayable tracks
|
||||||
- Queue UI correctly plays a track when clicking on an already selected item
|
- Queue UI correctly plays a track when clicking on an already selected item
|
||||||
|
- Swap foreground and background colors for command line input
|
||||||
|
|
||||||
## [1.2.2]
|
## [1.2.2]
|
||||||
|
|
||||||
|
|||||||
@@ -44,8 +44,8 @@ impl Layout {
|
|||||||
configuration: Arc<Config>,
|
configuration: Arc<Config>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
let style = ColorStyle::new(
|
let style = ColorStyle::new(
|
||||||
ColorType::Color(*theme.palette.custom("cmdline_bg").unwrap()),
|
|
||||||
ColorType::Color(*theme.palette.custom("cmdline").unwrap()),
|
ColorType::Color(*theme.palette.custom("cmdline").unwrap()),
|
||||||
|
ColorType::Color(*theme.palette.custom("cmdline_bg").unwrap()),
|
||||||
);
|
);
|
||||||
let mut command_line_input = EditView::new().filler(" ").style(style);
|
let mut command_line_input = EditView::new().filler(" ").style(style);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user