Use carriage return instead of newline symbol for single line text (#25616)

I think this is clearer in the cases where it does appear. Use of NL
symbol was added in #10231

Release Notes:

- N/A
This commit is contained in:
Michael Sloan 2025-02-25 18:26:50 -07:00 committed by GitHub
parent 57659b5552
commit a5698a430d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -81,7 +81,7 @@ impl Render for Breadcrumbs {
}
text_style.color = Color::Muted.color(cx);
StyledText::new(segment.text.replace('\n', ""))
StyledText::new(segment.text.replace('\n', ""))
.with_highlights(&text_style, segment.highlights.unwrap_or_default())
.into_any()
});

View file

@ -177,7 +177,7 @@ impl LabelCommon for Label {
}
fn single_line(mut self) -> Self {
self.label = SharedString::from(self.label.replace('\n', ""));
self.label = SharedString::from(self.label.replace('\n', ""));
self.base = self.base.single_line();
self
}