Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rust formatting stuff 2 - removed an unused variable #535

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Removed an unused var
  • Loading branch information
adamperkowski committed Sep 19, 2024
commit 885ed86ec4bf46e1663829faa16c90c220c94628
2 changes: 1 addition & 1 deletion tui/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ impl AppState {
},
));

let style = if let Focus::List = self.focus {
if let Focus::List = self.focus {
Style::default().reversed()
} else {
Style::new()
Expand Down