Skip to content

Commit

Permalink
chore(term): upgrade tui-big-text from 0.4.5 to 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ymgyt committed Aug 5, 2024
1 parent 97649c9 commit 23de054
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions 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 crates/synd_term/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ toml = { version = "0.8.15", default-features = true }
tracing = { workspace = true }
tracing-appender = "0.2.3"
tracing-subscriber = { workspace = true }
tui-big-text = "0.4.5"
tui-big-text = "0.5.3"
unicode-segmentation = "1.10.1"
update-informer = { version = "1.1.0", default-features = false, features = ["crates", "reqwest", "rustls-tls"] }
url = { workspace = true }
Expand Down
6 changes: 2 additions & 4 deletions crates/synd_term/src/ui/components/authentication.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,13 @@ impl Authentication {
let [big_text_area, title_area, methods_area] = vertical.areas(area);

// Render big "syndicationd"
if let Ok(big_text) = BigText::builder()
BigText::builder()
.pixel_size(PixelSize::HalfWidth)
.style(cx.theme.base)
.alignment(Alignment::Center)
.lines(vec!["Syndicationd".into()])
.build()
{
big_text.render(big_text_area, buf);
}
.render(big_text_area, buf);

let title = Self::login_title(cx);

Expand Down

0 comments on commit 23de054

Please sign in to comment.