Skip to content

Commit

Permalink
background handling
Browse files Browse the repository at this point in the history
  • Loading branch information
DeaconDesperado committed Oct 17, 2024
1 parent d8f29a9 commit 6995e36
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zellij-server/src/panes/terminal_character.rs
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,9 @@ impl Display for CharacterStyles {

impl From<StyleDeclaration> for CharacterStyles {
fn from(declaration: StyleDeclaration) -> Self {
RESET_STYLES.foreground(Some(declaration.base.into()))
RESET_STYLES
.foreground(Some(declaration.base.into()))
.background(Some(declaration.background.into()))
}
}

Expand Down

0 comments on commit 6995e36

Please sign in to comment.