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:
parent
57659b5552
commit
a5698a430d
2 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
});
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue