Skip to content

Commit 98c8865

Browse files
committed
chore(term): bump ratatui from 0.28.1 to 0.29.0
https://ratatui.rs/highlights/v029/
1 parent 4820e26 commit 98c8865

File tree

3 files changed

+33
-33
lines changed

3 files changed

+33
-33
lines changed

Cargo.lock

+30-30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/synd_term/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ nom = { version = "7.1.3", default-features = false, features =
4040
nucleo = "0.5.0"
4141
octocrab = { workspace = true, features = ["timeout", "tracing"] }
4242
open = "5.3.0"
43-
ratatui = { version = "0.28.1" }
43+
ratatui = { version = "0.29.0" }
4444
reqwest = { workspace = true }
4545
schemars = { workspace = true, features = ["derive"] }
4646
serde = { workspace = true, features = ["derive"] }
@@ -52,7 +52,7 @@ toml = { workspace = true }
5252
tracing = { workspace = true }
5353
tracing-appender = "0.2.3"
5454
tracing-subscriber = { workspace = true }
55-
tui-widgets = { version = "0.3.1", default-features = false, features = ["big-text"] }
55+
tui-widgets = { version = "0.4.0", default-features = false, features = ["big-text"] }
5656
unicode-segmentation = "1.12.0"
5757
update-informer = { version = "1.1.0", default-features = false, features = ["crates", "reqwest", "rustls-tls"] }
5858
url = { workspace = true }

crates/synd_term/src/ui/widgets/table.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ impl<'a> TableBuilder<Row<'a>, Vec<Row<'a>>, Vec<Constraint>, &'a EntriesTheme,
137137
.header(header.style(theme.header))
138138
.column_spacing(2)
139139
.highlight_symbol(ui::TABLE_HIGHLIGHT_SYMBOL)
140-
.highlight_style(theme.selected_entry.add_modifier(highlight_modifier))
140+
.row_highlight_style(theme.selected_entry.add_modifier(highlight_modifier))
141141
.highlight_spacing(ratatui::widgets::HighlightSpacing::Always);
142142

143143
let state = TableState::new().with_offset(0).with_selected(selected_idx);

0 commit comments

Comments
 (0)