1
0
mirror of https://github.com/sharkdp/bat synced 2026-08-04 19:01:44 +00:00

undid unnecessary api visibility changes

This commit is contained in:
Oliver looney
2024-02-08 21:41:20 +00:00
parent 7ce010d9ed
commit 02077db53e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -240,7 +240,7 @@ fn set_terminal_title_to(new_terminal_title: String) {
fn get_new_terminal_title(inputs: &Vec<Input>) -> String {
let mut new_terminal_title = "bat: ".to_string();
for (index, input) in inputs.iter().enumerate() {
new_terminal_title += &input.description.name.to_string();
new_terminal_title += input.description().title();
if index < inputs.len() - 1 {
new_terminal_title += ", ";
}