mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Use a Cow<'static, str>
for the Info component title
Some uses of the component (like for register) provide a static title. We can trivially avoid the title allocation in those cases.
This commit is contained in:
parent
1c0b36b1b4
commit
b8912adbbf
3 changed files with 11 additions and 9 deletions
|
@ -106,7 +106,7 @@ impl KeyTrieNode {
|
|||
(events.join(", "), desc)
|
||||
})
|
||||
.collect();
|
||||
Info::new(&self.name, &body)
|
||||
Info::new(self.name.clone(), &body)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ impl Component for Info {
|
|||
surface.clear_with(area, popup_style);
|
||||
|
||||
let block = Block::bordered()
|
||||
.title(self.title.as_str())
|
||||
.title(self.title.as_ref())
|
||||
.border_style(popup_style);
|
||||
|
||||
let margin = Margin::horizontal(1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue