commit bd6b819118120929dfb094bc96ee60445cca460d
parent e20861f8d677f48eac16afeb725f15521f6be66f
Author: kernelkind <kernelkind@gmail.com>
Date: Sun, 5 Oct 2025 13:16:26 -0400
fix: profile wrapping
zap url for this npub was long, causing it to flow off screen &
causing the content below it to flow off screen as well
npub1pm5z0gmw3wcvl3yreuv8y7q3stz2zmzc4jar4ckhk927qdcwjwuq3txe07
Signed-off-by: kernelkind <kernelkind@gmail.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/crates/notedeck_columns/src/ui/profile/mod.rs b/crates/notedeck_columns/src/ui/profile/mod.rs
@@ -250,7 +250,7 @@ fn profile_body(
.and_then(|p| p.and_then(|p| p.lud16()).filter(|s| !s.is_empty()));
if let Some(website_url) = website_url {
- ui.horizontal(|ui| {
+ ui.horizontal_wrapped(|ui| {
handle_link(ui, website_url);
});
}
@@ -259,7 +259,7 @@ fn profile_body(
if website_url.is_some() {
ui.end_row();
}
- ui.horizontal(|ui| {
+ ui.horizontal_wrapped(|ui| {
handle_lud16(ui, lud16);
});
}