Skip to content

Commit

Permalink
2.6.1 -> 2.6.2
Browse files Browse the repository at this point in the history
Also, appeased the linter
  • Loading branch information
Xithrius committed Dec 17, 2023
1 parent bd41363 commit 4c382da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "twitch-tui"
version = "2.6.1"
version = "2.6.2"
authors = ["Xithrius <[email protected]>"]
edition = "2021"
rust-version = "1.65.0"
Expand Down
6 changes: 3 additions & 3 deletions src/ui/components/chat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,12 @@ impl Component for ChatWidget {

let list = List::new(&*final_messages)
.block(
if !self.config.borrow().frontend.hide_chat_border {
if self.config.borrow().frontend.hide_chat_border {
Block::default()
.borders(Borders::ALL)
.border_type(self.config.borrow().frontend.border_type.clone().into())
} else {
Block::default()
.borders(Borders::ALL)
.border_type(self.config.borrow().frontend.border_type.clone().into())
}
.title(chat_title),
)
Expand Down

0 comments on commit 4c382da

Please sign in to comment.