undid unnecessary api visibility changes

This commit is contained in:
Oliver looney 2024-02-08 21:41:20 +00:00
parent 7ce010d9ed
commit 02077db53e
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

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 += ", ";
}

View File

@ -13,7 +13,7 @@ use crate::error::*;
/// This tells bat how to refer to the input.
#[derive(Clone)]
pub struct InputDescription {
pub name: String,
pub(crate) name: String,
/// The input title.
/// This replaces the name if provided.
@ -94,7 +94,7 @@ pub(crate) struct InputMetadata {
pub struct Input<'a> {
pub(crate) kind: InputKind<'a>,
pub(crate) metadata: InputMetadata,
pub description: InputDescription,
pub(crate) description: InputDescription,
}
pub(crate) enum OpenedInputKind {